写出小米商城的静态页面的代码
时间: 2023-11-16 12:04:57 浏览: 72
由于小米商城的静态页面非常复杂,包含大量的HTML、CSS和JavaScript代码,因此无法在此处完整地展示。以下是一个简单的示例,以展示一些基本的HTML元素和样式:
```html
<!DOCTYPE html>
<html>
<head>
<title>小米商城</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">手机</a></li>
<li><a href="#">电视</a></li>
<li><a href="#">笔记本</a></li>
<li><a href="#">智能家居</a></li>
</ul>
</nav>
<div class="search-box">
<input type="text" placeholder="搜索">
<button>搜索</button>
</div>
</header>
<main>
<section class="banner">
<img src="banner.jpg" alt="小米商城">
</section>
<section class="goods">
<h2>热门商品</h2>
<ul>
<li>
<a href="#">
<img src="phone.jpg" alt="小米手机">
<h3>小米手机</h3>
<p>2999元</p>
</a>
</li>
<li>
<a href="#">
<img src="tv.jpg" alt="小米电视">
<h3>小米电视</h3>
<p>3999元</p>
</a>
</li>
<li>
<a href="#">
<img src="laptop.jpg" alt="小米笔记本">
<h3>小米笔记本</h3>
<p>5999元</p>
</a>
</li>
<li>
<a href="#">
<img src="home.jpg" alt="小米智能家居">
<h3>小米智能家居</h3>
<p>1999元</p>
</a>
</li>
</ul>
</section>
</main>
<footer>
<p>© 2021 小米科技</p>
</footer>
</body>
</html>
```
这段代码包含了一个简单的页面布局,包括一个导航栏、一个搜索栏、一个轮播图和一个商品列表,以及一个页脚。示例中使用了外部样式表来统一页面的样式,相关的CSS代码如下:
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
nav {
background-color: #333;
color: white;
padding: 10px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: white;
text-decoration: none;
}
.search-box {
display: inline-block;
margin-left: 10px;
}
.search-box input {
padding: 5px;
border: none;
border-bottom: 1px solid #333;
}
.search-box button {
padding: 5px 10px;
background-color: #333;
color: white;
border: none;
cursor: pointer;
}
.banner {
text-align: center;
}
.banner img {
max-width: 100%;
height: auto;
}
.goods {
margin: 20px 0;
}
.goods h2 {
text-align: center;
}
.goods ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.goods li {
margin: 10px;
flex-basis: 300px;
}
.goods li a {
display: block;
background-color: #f5f5f5;
padding: 10px;
text-align: center;
text-decoration: none;
color: #333;
}
.goods li a:hover {
background-color: #333;
color: white;
}
.goods li img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.goods li h3 {
margin: 0;
font-size: 20px;
}
.goods li p {
margin: 0;
font-size: 16px;
color: #999;
}
```
以上代码只是小米商城静态页面的一小部分,实际页面中还包含大量的内容和样式。
阅读全文