七夏 发表于 2024-11-27 23:04:26

霓虹灯文字特效素材源码

霓虹灯文字特效素材源码
https://www.3bbs.cn/index-diy/img.php?url=https://mmbiz.qpic.cn/sz_mmbiz_gif/nahUvZPrjoe0siaEqp9jNP940G7HGtjhldM9icunUISa0N2ykE7s6F4sRCM66JJ4F7OpwRfz9BZNRfy3zeZzQ00g/640?wx_fmt=gif&from=appmsg&tp=webp&wxfrom=5&wx_lazy=1&wx_co=1
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
      @import url('https://fonts.googleapis.com/css2?family=Akshar&family=Pacifico&family=Tapestry&family=Ubuntu&display=swap');

      body {
            background-color: #222222;
            overflow: hidden;
      }

      .center {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
      }

      a {
            font-family: 'Pacifico', cursive;
            font-size: 7em;

            animation: neon 2s ease-in-out infinite alternate;
            color: white;
      }

      @keyframes neon {
            from {
                text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 8px #44D0FE,
                  0 0 10px #44D0FE, 0 0 12px #44D0FE, 0 0 14px #44D0FE, 0 0 16px #44D0FE;
            }

            to {
                text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #44D0FE,
                  0 0 30px #44D0FE, 0 0 35px #44D0FE, 0 0 40px #44D0FE, 0 0 45px #44D0FE;
            }
      }
    </style>
</head>

<body>
    <div class='center'>
      <a>Yellow</a>
    </div>
</body>

</html>

页: [1]
查看完整版本: 霓虹灯文字特效素材源码