Amani 发表于 2024-5-29 13:15:53

HTML+CSS魔幻霓虹灯文字特效代码






<!DOCTYPE html>
<html lang="zh-CN">
<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>特效代码</title>
    <style>
      *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
      }
      body{
            background-color: rgb(4, 15, 36);
      }
      h3{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 100%;
            text-align: center;
            font-size: 3em;
            text-transform: uppercase;
            letter-spacing: 10px;
            color: rgb(4, 15, 36);
            -webkit-box-reflect: below 1px linear-gradient(transparent ,rgb(218, 218, 218));
            animation: san 6s linear infinite;
      }
      @keyframes san{
            0%,15%,50%,52%,70%,90%,99.1%{
                color: rgb(4, 15, 36);
                filter: blur(2px);
            }
            12%,15.1%,60%,70.1%,90.5%,100%{
                color: rgb(255, 255, 255);
                text-shadow: 0 0 5px rgb(22, 138, 216),
                0 0 25px rgb(22, 138, 216),
                0 0 35px rgb(22, 138, 216),
                0 0 105px rgb(22, 138, 216),
                0 0 155px rgb(22, 138, 216);
                filter: blur(0px);
            }
      }
    </style>
</head>
<body>
    <h3>QQ沐编程欢迎您!www.qqmu.com</h3>
</body>
</html>


吴彦祖 发表于 2024-5-29 16:15:15

王的决斗必须是娱乐!

SanS三石 发表于 2024-6-29 13:28:39

滴~学生卡,打卡成功!楼主辛苦了,祝楼主:万事如意🧡,打卡时间:2024年06月29日 13:28:39
页: [1]
查看完整版本: HTML+CSS魔幻霓虹灯文字特效代码