利用HTML+CSS+JavaScript制作致敬逆行者的动态网页代码
时间: 2023-07-31 17:05:53 浏览: 219
制作一个简单HTML抗疫逆行者网页作业(HTML+CSS)
以下是一个简单的示例代码,演示如何使用HTML、CSS和JavaScript制作一个致敬逆行者的动态网页,您可以根据需要进行修改和扩展:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>致敬逆行者</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
font-size: 36px;
margin: 0;
}
nav {
background-color: #666;
color: #fff;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
color: #ff0;
text-decoration: underline;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
figure {
margin: 10px;
padding: 10px;
background-color: #fff;
box-shadow: 2px 2px 5px #888;
width: 200px;
text-align: center;
}
figure img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
figure figcaption {
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
}
figure p {
font-size: 14px;
margin: 0;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#logo {
animation: rotate 2s linear infinite;
}
</style>
</head>
<body>
<header>
<h1>致敬逆行者</h1>
</header>
<nav>
<a href="#">首页</a>
<a href="#">新闻</a>
<a href="#">视频</a>
<a href="#">图片</a>
<a href="#">关于我们</a>
</nav>
<section>
<figure>
<img src="https://i.loli.net/2021/07/06/2z5SgJx8nfKZ9dI.jpg" alt="逆行者">
<figcaption>逆行者</figcaption>
<p>最美逆行者,你们辛苦了!</p>
</figure>
<figure>
<img src="https://i.loli.net/2021/07/06/2z5SgJx8nfKZ9dI.jpg" alt="逆行者">
<figcaption>逆行者</figcaption>
<p>最美逆行者,你们辛苦了!</p>
</figure>
<figure>
<img src="https://i.loli.net/2021/07/06/2z5SgJx8nfKZ9dI.jpg" alt="逆行者">
<figcaption>逆行者</figcaption>
<p>最美逆行者,你们辛苦了!</p>
</figure>
<figure>
<img src="https://i.loli.net/2021/07/06/2z5SgJx8nfKZ9dI.jpg" alt="逆行者">
<figcaption>逆行者</figcaption>
<p>最美逆行者,你们辛苦了!</p>
</figure>
</section>
<footer>
<p>© 2021 All Rights Reserved.</p>
</footer>
<script>
window.onload = function() {
var logo = document.getElementById("logo");
logo.click();
}
</script>
</body>
</html>
```
这个示例代码包括了一个简单的头部、导航、内容区域和页脚,以及一个旋转的逆行者图标,您可以根据需要进行修改和扩展。
阅读全文