写一个烟花html代码
时间: 2023-08-11 16:06:07 浏览: 175
1_烟花代码.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 forwards;
animation-delay: 1s;
}
@keyframes explode {
0% {
transform: scale(0.1);
opacity: 1;
}
30% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(5);
opacity: 0;
}
}
</style>
</head>
<body>
<script>
function createFirework() {
const firework = document.createElement('div');
firework.classList.add('firework');
firework.style.left = Math.random() * window.innerWidth + 'px';
firework.style.top = Math.random() * window.innerHeight + 'px';
document.body.appendChild(firework);
setTimeout(() => {
firework.remove();
}, 3000);
}
setInterval(() => {
createFirework();
}, 1000);
</script>
</body>
</html>
```
这个代码会在页面中不断地创建烟花,每个烟花都是一个白色的小球,随机出现在页面的任意位置。然后它会在1秒内扩大到5倍大小,并逐渐消失。这个过程会持续3秒,然后这个烟花就会从页面中移除。这个过程不断重复,让页面充满不断绽放的烟花。
阅读全文