用html写一个动态爱心
时间: 2023-07-20 15:23:52 浏览: 85
动态爱心.html
好的,以下是一个简单的用 HTML 和 CSS 实现的动态爱心:
```html
<!DOCTYPE html>
<html>
<head>
<title>动态爱心</title>
<style>
.container {
position: relative;
margin: 50px auto;
width: 200px;
height: 200px;
}
.heart {
position: absolute;
top: 0;
left: 70px;
width: 60px;
height: 60px;
background-color: red;
transform: rotate(45deg);
animation: beat 1s linear infinite;
}
.heart:before,
.heart:after {
position: absolute;
content: "";
width: 60px;
height: 60px;
background-color: red;
border-radius: 30px 30px 0 0;
}
.heart:before {
top: -30px;
left: 0;
}
.heart:after {
top: 0;
left: 30px;
}
@keyframes beat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<div class="container">
<div class="heart"></div>
</div>
</body>
</html>
```
在浏览器中打开该 HTML 文件,就可以看到一个动态的红色爱心。
阅读全文