<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3炫彩文字动画背景特效</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #000;
overflow: hidden;
font-family: 'Arial', sans-serif;
}
.container {
position: relative;
width: 100%;
height: 100%;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 5em;
font-weight: bold;
text-transform: uppercase;
color: transparent;
background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
background-size: 400% 400%;
-webkit-background-clip: text;
background-clip: text;
animation: rainbow 8s ease infinite;
text-shadow: 0 0 10px rgba(255,255,255,0.3);
z-index: 10;
}
@keyframes rainbow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.particle {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
box-shadow: 0 0 10px 2px rgba(255,255,255,0.5);
animation: float 15s infinite linear;
}
@keyframes float {
0% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(-1000px) rotate(720deg);
opacity: 0;
}
}
.link {
position: absolute;
bottom: 20px;
right: 20px;
color: white;
font-size: 12px;
text-decoration: none;
z-index: 100;
}
.link:hover {
color: #00ff00;
}
</style>
</head>
<body>
<div class="container">
<div class="text">炫彩文字特效</div>
<div class="particles" id="particles"></div>
</div>
<script>
// 创建粒子效果
const particlesContainer = document.getElementById('particles');
const particleCount = 50;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// 随机位置
const posX = Math.random() * 100;
const posY = Math.random() * 100;
// 随机大小
const size = Math.random() * 10 + 5;
// 随机颜色
const hue = Math.random() * 360;
const color = `hsla(${hue}, 100%, 50%, 0.7)`;
// 随机动画延迟和持续时间
const delay = Math.random() * 15;
const duration = Math.random() * 10 + 10;
// 设置样式
particle.style.left = `${posX}%`;
particle.style.top = `${posY}%`;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.background = color;
particle.style.animationDelay = `${delay}s`;
particle.style.animationDuration = `${duration}s`;
particlesContainer.appendChild(particle);
}
</script>
</body>
</html>
862

被折叠的 条评论
为什么被折叠?



