HTML5与CSS3实现动态网页
这里我们将使用HTML5和CSS3创建一个简单的动态网页,包含一个带有动画的背景和一个简单的导航栏。
<!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, html {
margin: 0;
padding: 0;
height: 100%;
}
.nav {
position: absolute;
top: 20px;
left: 20px;
}
.nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.nav ul li {
display: inline-block;
margin-right: 10px;
}
.nav ul li a {
text-decoration: none;
color: white;
padding: 5px 10px;
background-color: #007bff;
border-radius: 5px;
}
.nav ul li a:hover {
background-color: #0056b3;
}
@keyframes moveBackground {
0% { background-position: 0 0; }
100% { background-position: 1000px 0; }
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('background.jpg') repeat-x;
animation: moveBackground 10s linear infinite;
}
</style>
</head>
<body>
<div class="background"></div>
<div class="nav">
<ul>
<li><a href="#">主页</a></li>
<li><a href="#">关于我们</a></li>
<li><a href="#">产品</a></li>
<li><a href="#">联系方式</a></li>
</ul>
</div>
</body>
</html>
这段代码展示了如何使用HTML5和CSS3创建一个简单的动态背景和导航栏。代码中包含了CSS样式和@keyframes
动画规则来实现背景的动态滚动效果。这个示例可以作为学习如何在网页中使用这些技术的起点。
评论已关闭