html烟花特效代码下载
时间: 2023-09-22 11:05:56 浏览: 156
以下是一个简单的HTML烟花特效代码,你可以将其复制粘贴到你的HTML文件中进行使用:
```html
<!DOCTYPE html>
<html>
<head>
<title>烟花特效</title>
<style type="text/css">
.firework {
position: absolute;
background-color: yellow;
border-radius: 50%;
animation: fireworks 1s ease-out;
animation-fill-mode: forwards;
}
@keyframes fireworks {
0% {
width: 0;
height: 0;
opacity: 1;
}
50% {
width: 60px;
height: 60px;
opacity: 0.5;
}
100% {
width: 120px;
height: 120px;
opacity: 0;
}
}
</style>
</head>
<body>
<script type="text/javascript">
function createFirework() {
var firework = document.createElement('div');
firework.className = 'firework';
firework.style.top = Math.random() * window.innerHeight + 'px';
firework.style.left = Math.random() * window.innerWidth + 'px';
document.body.appendChild(firework);
setTimeout(function() {
firework.remove();
}, 1000);
}
setInterval(createFirework, 1000);
</script>
</body>
</html>
```
你可以将代码保存为一个HTML文件,然后在浏览器中打开它来查看特效。如果你想调整特效的大小、颜色或动画时间,可以修改CSS部分中的属性。
阅读全文