生成跨年烟花html代码
时间: 2023-09-05 17:13:52 浏览: 111
跨年的html烟花代码
可以使用以下代码来生成跨年烟花的效果:
```
<!DOCTYPE html>
<html>
<head>
<title>跨年烟花</title>
<style>
body {
background-color: black;
}
.firework {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #f00;
animation: explode 1s;
animation-fill-mode: forwards;
}
@keyframes explode {
from {
transform: scale(0);
}
to {
transform: scale(10);
opacity: 0;
}
}
</style>
</head>
<body>
<script>
// 创建烟花
function createFirework() {
var firework = document.createElement('div');
firework.className = 'firework';
firework.style.left = Math.random() * 100 + '%';
firework.style.top = Math.random() * 100 + '%';
document.body.appendChild(firework);
}
// 每秒创建10个烟花
setInterval(createFirework, 100);
</script>
</body>
</html>
```
希望您喜欢这个跨年烟花效果!
阅读全文