中秋节祝福网页源代码
时间: 2024-09-16 16:03:13 浏览: 84
中秋节祝福网页的源代码通常是HTML、CSS和JavaScript的结合,目的是为了创建一个动态且具有节日氛围的页面。下面是一个简单的示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>中秋快乐</title>
<style>
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.moon {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: #d62728; /* 红色代表月光 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.message {
text-align: center;
padding: 50px;
}
</style>
</head>
<body>
<div class="moon"></div>
<h1 class="message">中秋佳节,月圆人团圆</h1>
<p class="message">祝您中秋节快乐,阖家幸福!</p>
<script>
// 可能添加的简单交互,如点击月亮显示动画等
document.querySelector('.moon').addEventListener('click', function() {
this.style.backgroundColor = 'yellow'; // 黄色代表月光变化
setTimeout(function() {
this.style.backgroundColor = '#d62728';
}, 2000);
});
</script>
</body>
</html>
```
阅读全文