发布时间:2026-02-04 00:51:33 浏览次数:0
body {
background-color: black;
}
h1 {
font-family: Arial
sans-serif;
color: white;
text-align: center;
margin-top: 150px;
}
.firework {
width: 6px;
height: 120px;
background-color: white;
position: absolute;
}
@keyframes explode {
0% { transform: scale(1); opacity: 1; }
* { transform: scale(5); opacity: 0; }
}