【博主推荐】HTML5实现520表白、情人节表白模板源码
以下是一个简单的HTML5表白页面模板示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表白页面</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f7f7f7;
font-family: Arial, sans-serif;
}
.heart {
position: relative;
width: 200px;
height: 200px;
background-color: #ff0000;
animation: pulse 1s infinite;
}
.heart::before,
.heart::after {
content: "";
position: absolute;
left: 50px;
top: 0;
width: 50px;
height: 80px;
background-color: #ff0000;
border-radius: 50px 50px 0 0;
transform: rotate(-45deg);
transform-origin: 0 100%;
}
.heart::after {
left: 0;
transform: rotate(45deg);
transform-origin: 100% 100%;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
h1 {
color: #ff0000;
font-size: 3em;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="heart">
<h1>520</h1>
</div>
</body>
</html>
这个模板使用了CSS3动画制作了一个心形图案,并在心形上方放置了数字"520"。简洁而有趣,适合作为表白页面使用。
评论已关闭