你给我写一段html的烟花代码
时间: 2023-11-08 12:04:12 浏览: 84
好的,以下是一段 HTML 烟花代码:
```html
<!DOCTYPE html>
<html>
<head>
<style>
/* 设置背景颜色为黑色 */
body {
background-color: black;
}
/* 设置烟花样式 */
.firework {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: white;
animation: explode 1s linear;
}
/* 设置烟花动画 */
@keyframes explode {
from {
transform: translateY(0);
}
to {
transform: translateY(-100vh);
}
}
</style>
</head>
<body>
<!-- 创建一个 div 元素,并添加烟花样式 -->
<div class="firework"></div>
</body>
</html>
```
这段代码会在浏览器中显示一个从顶部坠落的白色圆圈(烟花)。
希望这对您有帮助!
阅读全文