一行代码跨年代码 烟花代码html
时间: 2023-09-05 18:13:33 浏览: 127
我不确定你的问题是什么,但是我可以为你提供一些HTML代码来制作烟花效果。请注意,这些代码可能需要与其他代码结合使用才能实现跨年效果。
```
<!DOCTYPE html>
<html>
<head>
<title>烟花效果</title>
<style>
body {
background-color: black;
}
.firework {
position: absolute;
width: 5px;
height: 5px;
border-radius: 50%;
background-color: white;
box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff0, 0 0 70px #ff0, 0 0 80px #ff0, 0 0 100px #ff0, 0 0 150px #ff0;
animation: explode 1s ease forwards;
}
@keyframes explode {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(20);
opacity: 0;
}
}
</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);
setTimeout(function() {
firework.remove();
}, 1000);
}
setInterval(createFirework, 100);
</script>
</body>
</html>
```
这个代码会在页面上制作出多个小型烟花效果,每隔100毫秒会创建一个新的烟花。如果需要更多自定义功能,请参考其他资源或自行修改代码。
阅读全文