用html写一个动态爱心
时间: 2023-05-13 15:07:43 浏览: 124
用html写爱心2种方法源代码
非常感谢您的提问,以下是一个用 HTML 写的动态爱心的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>动态爱心</title>
<style>
.heart {
position: absolute;
width: 20px;
height: 20px;
background-color: red;
transform: rotate(45deg);
animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<div class="heart"></div>
</body>
</html>
```
希望能够帮到您!
阅读全文