编写一段可以在网页展示,带有不同动画效果,可以表达文字的爱心代码
时间: 2023-03-24 08:02:31 浏览: 82
非常感谢您的提问。以下是一段可以在网页展示,带有不同动画效果,可以表达文字的爱心代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>爱心动画</title>
<style>
.heart {
position: relative;
display: inline-block;
width: 100px;
height: 90px;
transform: rotate(45deg);
animation: heartbeat 1s ease-in-out infinite;
}
.heart:before,
.heart:after {
position: absolute;
content: "";
left: 50px;
top: ;
width: 50px;
height: 80px;
background: red;
border-radius: 50px 50px ;
transform: rotate(-45deg);
}
.heart:after {
left: ;
border-radius: 50px 50px;
transform: rotate(45deg);
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
color: red;
font-weight: bold;
animation: heartbeat 1s ease-in-out infinite;
}
@keyframes heartbeat {
% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<div class="heart">
<div class="text">爱</div>
</div>
</body>
</html>
```
希望这段代码能够满足您的需求。如果您有任何问题或建议,欢迎随时联系我。
阅读全文