html生日动画代码
时间: 2023-11-14 22:27:05 浏览: 218
当然!以下是一个简单的 HTML 生日动画代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>生日动画</title>
<style>
.cake {
width: 300px;
height: 400px;
background-color: #fddbd8;
margin: 0 auto;
position: relative;
border-radius: 10px;
overflow: hidden;
}
.candle {
width: 20px;
height: 80px;
background-color: #ffce00;
position: absolute;
bottom: 50px;
left: 140px;
}
.flame {
width: 20px;
height: 40px;
background-color: #ff6600;
position: absolute;
bottom: 0;
left: 0;
transform-origin: bottom center;
animation: flicker 1s infinite alternate;
}
@keyframes flicker {
from {
opacity: 1;
}
to {
opacity: 0.5;
}
}
.message {
text-align: center;
margin-top: 30px;
font-size: 24px;
}
</style>
</head>
<body>
<div class="cake">
<div class="candle">
<div class="flame"></div>
</div>
</div>
<div class="message">Happy Birthday!</div>
</body>
</html>
```
你可以将上述代码保存为一个 HTML 文件,然后在浏览器中打开,即可看到一个简单的生日动画效果。这个示例中,我们使用了 CSS 的动画效果来模拟蜡烛的火焰闪烁,并添加了一个“Happy Birthday!”的消息。
请注意,这只是一个非常简单的示例,你可以根据需要进行修改和扩展,例如添加更多的蜡烛、改变颜色等等。祝你生日快乐!
阅读全文