其他分享
首页 > 其他分享> > 黑屏绿字加载中 无脚本

黑屏绿字加载中 无脚本

作者:互联网

欸呦图丢了

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        @keyframes move {
            0% {
                top: 0%;
            }

            100% {
                top: -50%;
            }
        }

        .loading {
            width: 100%;
            height: 100%;
            background: #000;
            position: relative;
            font-weight: 700;
            font-size: 128px;
            font-family: sans-serif;
            overflow: hidden;
            filter: contrast(10);
        }

        .bg {
            margin: 0 auto;
            color: #0f0;
            text-align: center;
            filter: blur(5px);
        }

        .bars {
            filter: blur(5px);
            width: 100%;
            height: 250%;
            position: absolute;
            animation: move 3s infinite linear;
            background-image: linear-gradient(to top,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000, #0008, #0000, #0000,
                    #0008, #0000, #0000);
        }
    </style>
</head>

<body>
    <div class="loading">
        <div class="bg">LOADING</div>
        <div class="bars">
        </div>
    </div>
</body>

</html>

标签:0000,绿字,100%,0008,filter,font,top,黑屏,加载
来源: https://blog.csdn.net/dscn15848078969/article/details/122797564