用web前端编写该文件图片代码
时间: 2024-11-10 11:13:27 浏览: 17
根据《前三章阶段练习要求.docx》中的描述,以下是使用HTML和CSS实现各部分效果的示例代码:
### HTML 结构
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>前三章阶段练习</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- 导航栏 -->
<nav>
<ul>
<li>首页</li>
<li>关于我们</li>
<li>联系我们</li>
</ul>
</nav>
<!-- 中间盒子 -->
<div class="middle-box">
<div class="basketball"></div>
<div class="peach1"></div>
<div class="peach2"></div>
<div class="windmill"></div>
</div>
<!-- 底部 -->
<footer>
<p>版权所有 © 2023</p>
<i class="icon icon1">A</i>
<i class="icon icon2">B</i>
<i class="icon icon3">C</i>
</footer>
</div>
</body>
</html>
```
### CSS 样式
```css
/* 基础样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
font-family: '书法字体', sans-serif; /* 替换为实际的书法字体 */
}
/* 导航栏 */
nav ul {
list-style-type: none;
display: flex;
justify-content: space-around;
width: 100%;
background-color: #f1f1f1;
}
nav ul li {
text-align: center;
line-height: 50px; /* 调整高度以使文本垂直居中 */
cursor: pointer;
}
nav ul li:hover {
background-color: #ddd;
}
/* 中间盒子 */
.middle-box {
position: relative;
width: 80%;
height: 70%;
border: 1px solid #000;
}
.basketball {
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
width: 50px;
height: 50px;
background-color: brown;
border-radius: 50%;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% {
left: 0;
}
50% {
left: calc(100% - 50px);
}
}
.peach1, .peach2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30px;
height: 30px;
background-color: orange;
border-radius: 50%;
animation: shake 2s ease-in-out infinite;
}
.peach2 {
animation-duration: 3s;
}
@keyframes shake {
0%, 100% {
transform: translate(-50%, -50%) rotate(0deg);
}
50% {
transform: translate(-50%, -50%) rotate(10deg);
}
}
.windmill {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(0deg);
width: 50px;
height: 50px;
background-color: gray;
animation: spin 2s linear infinite;
}
@keyframes spin {
from {
transform: translate(-50%, -50%) rotate(0deg);
}
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
/* 底部 */
footer {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
height: 50px;
background-color: #f1f1f1;
}
footer p {
text-align: center;
line-height: 50px; /* 调整高度以使文本垂直居中 */
}
.icon {
font-size: 24px;
line-height: 50px; /* 调整高度以使图标垂直居中 */
}
.icon1 { color: red; }
.icon2 { color: green; }
.icon3 { color: blue; }
```
### 解释
1. **整体布局**:使用 `flex` 布局将页面分为三部分:导航栏、中间盒子和底部。
2. **导航栏**:通过 `flex` 布局实现导航项的水平分布,并设置鼠标悬停时的背景色变化。
3. **中间盒子**:定义了一个相对定位的容器,用于放置篮球、桃子和风车。
4. **篮球**:使用绝对定位将篮球放在中间盒子的左侧垂直居中位置,并设置动画使其在碰到中间盒子边界时反弹。
5. **桃子**:两个桃子都设置了摇晃动画,但时间不同,实现无限循环。
6. **风车**:将风车的旋转中心固定在其几何中心,并设置匀速无限循环的旋转动画。
7. **底部**:文本和图标水平垂直居中显示,图标分别应用不同的颜色。
希望这些代码能帮助你完成任务!如果有任何疑问或需要进一步的帮助,请随时告诉我。
阅读全文