html+css烟花绽放源代码
时间: 2023-12-11 12:29:29 浏览: 151
烟花网页源码
以下是一个简单的 HTML + CSS 烟花绽放的源代码,你可以在浏览器中运行它来查看效果:
```html
<!DOCTYPE html>
<html>
<head>
<title>烟花绽放</title>
<style>
body {
background-color: black;
}
.firework {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: white;
animation: explode 1s ease-out forwards;
}
@keyframes explode {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(20);
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();
}, 1000);
}
setInterval(createFirework, 500);
</script>
</body>
</html>
```
这个代码会在页面中创建一个黑色背景,并且每隔 0.5 秒就会在随机位置创建一个白色的小球,然后通过 CSS 动画让它逐渐变大并消失。这样就形成了烟花绽放的效果。
阅读全文