html动态爱心代码
以下是一个使用HTML和CSS创建动态心形图案的示例代码:
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #f7f7f7;
}
.heart {
position: relative;
width: 100px;
height: 100px;
background: #f70e0e;
border-radius: 50%;
box-shadow: 0px 0px 10px #f70e0e;
animation: pulse 1s infinite;
}
.heart::before,
.heart::after {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 50px;
height: 80px;
background: #f70e0e;
border-radius: 50%;
box-shadow: 0px 0px 10px #f70e0e;
}
.heart::before {
transform: translateX(-50px);
}
.heart::after {
transform: translateX(50px);
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0px 0px 10px #f70e0e;
}
70% {
transform: scale(1.1);
box-shadow: 0px 0px 20px #f70e0e;
}
100% {
transform: scale(1);
box-shadow: 0px 0px 10px #f70e0e;
}
}
</style>
</head>
<body>
<div class="heart"></div>
</body>
</html>
这段代码使用了CSS动画来创建心形的动态效果。.heart
类定义了心形的基本样式,包括颜色、大小和动画效果。.heart::before
和.heart::after
分别代表心形的左半部分和右半部分,通过CSS变换进行定位。@keyframes pulse
定义了心跳的动画效果。当页面加载时,会显示一个动态的心形图案。
评论已关闭