HTML5七夕情人节表白网页制作【我喜欢你H5】HTML+CSS+JavaScript
以下是一个简单的HTML5七夕情人节表白网页示例,使用了HTML、CSS和JavaScript。
<!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;
align-items: center;
justify-content: center;
background: url('background.jpg') no-repeat center center fixed;
background-size: cover;
font-family: Arial, sans-serif;
}
.heart {
position: relative;
width: 200px;
height: 200px;
background: #f00;
animation: beat 0.6s infinite;
}
@keyframes beat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.heart::before,
.heart::after {
content: '';
position: absolute;
top: 0;
left: 50px;
width: 50px;
height: 80px;
background: #f00;
border-radius: 50px 50px 0 0;
transform: rotate(-45deg);
}
.heart::after {
left: 0;
transform: rotate(45deg);
}
h1 {
color: white;
font-size: 48px;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}
</style>
</head>
<body>
<div class="heart">
<h1>我喜欢你</h1>
</div>
</body>
</html>
这段代码创建了一个简单的表白网页,背景是一个心形的div,上面有“我喜欢你”的文字。通过CSS样式,心形会有跳动的动画效果,同时背景图片将充当整个网页的背景。这个示例简单易懂,易于理解和修改。
评论已关闭