烟花代码html复制
时间: 2023-07-28 09:06:57 浏览: 168
以下是一个简单的HTML代码示例,可以用来显示烟花效果:
```
<!DOCTYPE html>
<html>
<head>
<title>烟花效果</title>
<style>
body {
background-color: black;
}
.firework {
position: absolute;
background-color: white;
border-radius: 50%;
animation: explode 1s ease forwards;
}
@keyframes explode {
0% {
transform: scale(0);
}
100% {
transform: scale(10);
opacity: 0;
}
}
</style>
</head>
<body>
<script>
function createFirework() {
const firework = document.createElement('div');
firework.classList.add('firework');
const x = Math.random() * window.innerWidth;
const y = Math.random() * window.innerHeight;
firework.style.left = `${x}px`;
firework.style.top = `${y}px`;
document.body.appendChild(firework);
setTimeout(() => {
firework.remove();
}, 1000);
}
setInterval(createFirework, 500);
</script>
</body>
</html>
```
这段代码会在页面中循环创建并展示白色的圆形元素,每个元素都会在创建后立即开始一个动画,使其逐渐扩大并透明度逐渐降低,最终消失。这个效果类似于烟花爆裂的效果。
阅读全文