彩虹色文本描边动画

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>彩虹色文本描边动画</title>
    <style>
        body {
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }
        
        .rainbow-text {
            font-size: 5rem;
            font-weight: bold;
            text-align: center;
            position: relative;
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            animation: rainbowStroke 8s linear infinite;
        }
        
        @keyframes rainbowStroke {
            0%, 100% {
                -webkit-text-stroke-color: #ff0000;
                text-shadow: 0 0 10px #ff0000;
            }
            16% {
                -webkit-text-stroke-color: #ff7f00;
                text-shadow: 0 0 10px #ff7f00;
            }
            32% {
                -webkit-text-stroke-color: #ffff00;
                text-shadow: 0 0 10px #ffff00;
            }
            48% {
                -webkit-text-stroke-color: #00ff00;
                text-shadow: 0 0 10px #00ff00;
            }
            64% {
                -webkit-text-stroke-color: #0000ff;
                text-shadow: 0 0 10px #0000ff;
            }
            80% {
                -webkit-text-stroke-color: #4b0082;
                text-shadow: 0 0 10px #4b0082;
            }
        }
        
        .footer {
            position: absolute;
            bottom: 20px;
            color: #fff;
            font-size: 12px;
            text-align: center;
            width: 100%;
        }
        
        .footer a {
            color: #fff;
            text-decoration: none;
            animation: linkGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes linkGlow {
            from {
                text-shadow: 0 0 5px #fff;
            }
            to {
                text-shadow: 0 0 10px #fff, 0 0 20px #00f, 0 0 30px #00f;
            }
        }
    </style>
</head>
<body>
    <div class="rainbow-text">彩虹描边特效</div>
    
    <div class="footer">

    </div>

    <script>
        // 可以添加JavaScript交互效果
        document.querySelector('.rainbow-text').addEventListener('mouseover', function() {
            this.style.fontSize = '5.5rem';
        });
        
        document.querySelector('.rainbow-text').addEventListener('mouseout', function() {
            this.style.fontSize = '5rem';
        });
    </script>
</body>
</html>

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值