html的跨年烟花代码
时间: 2023-12-31 16:24:58 浏览: 95
跨年的html烟花代码
以下是一个简单的HTML跨年烟花代码的例子:
```html
<!DOCTYPE html>
<html>
<head>
<title>跨年烟花</title>
<style>
body {
background-color: black;
}
.firework {
position: absolute;
width: 10px;
height: 10px;
background-color: #fff;
border-radius: 50%;
animation: explode 1s infinite;
}
@keyframes explode {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(5);
}
}
</style>
</head>
<body>
<script>
function createFirework() {
var firework = document.createElement("div");
firework.className = "firework";
firework.style.left = Math.random() * window.innerWidth + "px";
firework.style.top = Math.random() * window.innerHeight + "px";
document.body.appendChild(firework);
}
setInterval(createFirework, 100);
</script>
</body>
</html>
```
这段代码使用HTML和CSS创建了一个简单的跨年烟花效果。它通过在页面上创建多个小圆点,并使用动画效果使它们逐渐放大并消失,从而模拟烟花爆炸的效果。
阅读全文