仅使用CSS实现的加载动画效果
作者:OnlineTutorials仅使用CSS实现的波浪文本加载动画效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>加载界面</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body{
           display: flex;
           justify-content: center;
           align-items: center;
           min-height: 100vh;
           background: #111; 
        }
        .loader{
            position: relative;
            cursor: default;
            -webkit-box-reflect: below -30px linear-gradient(transparent,#0005);
        }
        .loader span{
            position: relative;
            display: inline-flex;
            font-size: 3em;
            color: transparent;
            -webkit-text-stroke: 1px #fff9;
            text-transform: uppercase;
            font-weight: 800;
            animation: animate 2s ease-in-out infinite;
            animation-delay: calc(0.15s * var(--i));
        }
        @keyframes animate {
            0%{
                transform: translateY(0px);
                color: transparent;
                text-shadow: none;
            }
            20%{
                transform: translateY(-60px);
                color: #fff;
                text-shadow: 0 0 5px #fff,
                0 0 25px #fff,
                0 0 50px #fff;

            }
            40%,100%{
                transform: translateY(0px);
                color: transparent;
            }
        }
    </style>
</head>
<body>
    <div class="loader">
        <span style="--i:1;">L</span>
        <span style="--i:2;">o</span>
        <span style="--i:3;">a</span>
        <span style="--i:4;">d</span>
        <span style="--i:5;">i</span>
        <span style="--i:6;">n</span>
        <span style="--i:7;">g</span>
        <span style="--i:8;">·</span>
        <span style="--i:9;">·</span>
        <span style="--i:10;">·</span>
    </div>
</body>
</html>
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇