小米商城

准备工作:

访问 iconfont,官网链接:http://www.iconfont.cn/

登录之后,找到需要的图标

  1. ![](https://cdn.nlark.com/yuque/0/2020/png/1484428/1600846566152-235ca436-a184-4c28-898e-88d988811989.png)

将图标下载到本地,解压,重命名为 font

创建几个空文件夹:css,images,js

下载网页,需要的图片

Day59 小米商城 - 图1

网页设计图如下:

Day59 小米商城 - 图2

小米商城附件下载地址:

https://files.cnblogs.com/files/xiao987334176/%E5%B0%8F%E7%B1%B3%E5%95%86%E5%9F%8E%E9%99%84%E4%BB%B6.zip

顶部栏

网页的版心是 1226px

先做顶部栏,也就是这部分

Day59 小米商城 - 图3

index.html 代码如下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>小米商城</title>
  6. <style type="text/css">
  7. @font-face {font-family: 'iconfont';
  8. src: url('./font/iconfont.eot');
  9. src: url('./font/iconfont.eot?#iefix') format('embedded-opentype'),
  10. url('./font/iconfont.woff') format('woff'),
  11. url('./font/iconfont.ttf') format('truetype'),
  12. url('./font/iconfont.svg#iconfont') format('svg');
  13. }
  14. .iconfont{
  15. font-family:"iconfont" !important;
  16. font-size:16px;font-style:normal;
  17. -webkit-font-smoothing: antialiased;
  18. -webkit-text-stroke-width: 0.2px;
  19. -moz-osx-font-smoothing: grayscale;}
  20. </style>
  21. <link rel="stylesheet" type="text/css" href="./css/index.css">
  22. </head>
  23. <body>
  24. <!-- 小米的顶部栏 -->
  25. <div class="site-topBar">
  26. <div class="container clearfix">
  27. <!-- 顶部导航栏 -->
  28. <div class="topBar-l">
  29. <a href="#">小米商城</a>
  30. <span class="sep">|</span>
  31. <a href="#">MIUI</a>
  32. <span class="sep">|</span>
  33. <a href="#">loT</a>
  34. <span class="sep">|</span>
  35. <a href="#">云服务</a>
  36. <span class="sep">|</span>
  37. <a href="#">小爱开放平台</a>
  38. <span class="sep">|</span>
  39. <a href="#">金融</a>
  40. <span class="sep">|</span>
  41. <a href="#">有品</a>
  42. <span class="sep">|</span>
  43. <a href="#">政企服务</a>
  44. <span class="sep">|</span>
  45. <a href="#">Select Region</a>
  46. </div>
  47. <div class="topBar-cart">
  48. <a href="#">
  49. <i class="iconfont t">&#xe61a;</i>
  50. 购物车(1)
  51. </a>
  52. </div>
  53. <div class="topBar-info">
  54. <a href="#">登录</a>
  55. <span class="sep">|</span>
  56. <a href="#">注册</a>
  57. <span class="sep">|</span>
  58. <a href="#">消息通知</a>
  59. </div>
  60. </div>
  61. </div>
  62. </body>
  63. </html>

index.css 代码如下:

  1. *{
  2. /*清除所有标签默认的间距*/
  3. padding: 0;
  4. margin: 0;
  5. }
  6. ul{
  7. /*清除默认样式*/
  8. list-style: none;
  9. }
  10. a{
  11. /*设置所有a标签的样式,清除默认的样式*/
  12. text-decoration: none;
  13. }
  14. body{
  15. /*字体12像素 行高 1.5em,后面的是字体列表,从左到右依次匹配。匹配到了就显示。它是根据客户端操作系统存在对应的字体来匹配的。*/
  16. font: 14px/1.5 "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
  17. color: #333;
  18. background-color: #fff;
  19. /*最小宽度为1226px*/
  20. min-width: 1226px;
  21. }
  22. /*头部导航*/
  23. .site-topBar{
  24. width: 100%;
  25. background-color: #333;
  26. /*如果设置高度和行高一致,就能让文字垂直居中*/
  27. /*父元素设置height和line-height,子元素就不需要设置了*/
  28. height: 40px;
  29. line-height: 40px;
  30. /*导航部分默认字体大小同一为12px*/
  31. font-size: 12px;
  32. }
  33. /*头部导航主体*/
  34. .container{
  35. width: 1226px;
  36. /*div居中*/
  37. margin: 0 auto;
  38. position: relative;
  39. }
  40. /*清除浮动,在项目中,建议使用clearfix:after*/
  41. /*不能在container中设置overflow: hidden;来清除浮动。
  42. 否则鼠标移动到购物车时,下拉效果就无法显示,因为它超出div了*/
  43. .clearfix:after{
  44. content: '.';
  45. display: block;
  46. clear: both;
  47. visibility: hidden;
  48. height: 0;
  49. }
  50. /*左边a标签部分,它不能设置宽度,需要根据里面的内容来填充宽度。否则定死之后,内容就会挤压出来*/
  51. .topBar-l{
  52. /*左浮动,让文字并排显示*/
  53. float: left;
  54. }
  55. /*头部导航a标签默认字体颜色*/
  56. .site-topBar a{
  57. color:#b0b0b0;
  58. }
  59. /*a标签后面的|样式*/
  60. .sep{
  61. color: #424242;
  62. /*右外边距为0.5em
  63. 由于默认字体大小为12px,那么0.5em表示6px*/
  64. margin: 0 0.5em;
  65. }
  66. /*购物车*/
  67. .topBar-cart{
  68. /*右浮动,因为它在最右边*/
  69. float: right;
  70. /*右边的内边距为15px*/
  71. padding: 0 15px;
  72. /*背景颜色和顶部导航不一致,需要单一设置*/
  73. background-color: #424242;
  74. /*左外边距为15px*/
  75. margin-left: 15px;
  76. }
  77. /*购物车图标样式*/
  78. .topBar-cart .t{
  79. font-size: 20px;
  80. line-height: 20px;
  81. margin-right: 4px;
  82. /*vertical_align 这个是专门调整字体的方向的
  83. 垂直对齐方式,向下移动3px*/
  84. vertical-align: -3px;
  85. }
  86. /*登录注册样式*/
  87. .topBar-info{
  88. float: right;
  89. }
  90. /*顶部导航所有a标签hover样式*/
  91. .site-topBar a:hover{
  92. /*字体颜色为白色*/
  93. color: #fff;
  94. }

访问效果同上

导航栏

导航栏部分:

Day59 小米商城 - 图4

index.html 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>小米商城</title>
    <style type="text/css">
        @font-face {font-family: 'iconfont';
            src: url('./font/iconfont.eot');
            src: url('./font/iconfont.eot?#iefix') format('embedded-opentype'),
            url('./font/iconfont.woff') format('woff'),
            url('./font/iconfont.ttf') format('truetype'),
            url('./font/iconfont.svg#iconfont') format('svg');
        }


        .iconfont{
            font-family:"iconfont" !important;
            font-size:16px;font-style:normal;
            -webkit-font-smoothing: antialiased;
            -webkit-text-stroke-width: 0.2px;
            -moz-osx-font-smoothing: grayscale;
        }
    </style>
    <link rel="stylesheet" type="text/css" href="./css/index.css">
    <link rel="stylesheet" type="text/css" href="./css/nav.css">
    <script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src='js/index.js'></script>
    <!--导航js-->
    <script type="text/javascript" src='js/nav.js'></script>
</head>
<body>


    <!-- 小米的顶部栏 -->
    <div class="site-topBar">
        <div class="container clearfix">


            <!-- 顶部导航栏 -->
            <div class="topBar-l">
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">MIUI</a>
                <span class="sep">|</span>
                <a href="#">loT</a>
                <span class="sep">|</span>
                <a href="#">云服务</a>
                <span class="sep">|</span>
                <a href="#">小爱开放平台</a>
                <span class="sep">|</span>
                <a href="#">金融</a>
                <span class="sep">|</span>
                <a href="#">有品</a>
                <span class="sep">|</span>
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">政企服务</a>
                <span class="sep">|</span>
                <a href="#">Select Region</a>


            </div>
            <!--购物车-->
            <div class="topBar-cart">
                <a href="#" class="cart">
                    <i class="iconfont t">&#xe61a;</i>
                    购物车(0)
                </a>
                <!--默认隐藏-->
                <div  class="cart-menu" style="display: none;">
                    购物车中还没有商品,赶紧选购吧!
                </div>
            </div>
            <!--登录注册区域-->
            <div class="topBar-info">
                <a href="#">登录</a>
                <span class="sep">|</span>
                <a href="#">注册</a>
                <span class="sep">|</span>
                <a href="#">消息通知</a>
            </div>


        </div>
    </div>


    <!-- 导航栏 -->
    <div class="site-header">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--logo图片-->
            <div class="header-logo">
                <a href="#">
                    <img src="./images/mi-logo.png" alt="">
                </a>
            </div>
            <!--导航文字-->
            <div class="header-nav">
                <ul>
                    <li class="item">
                        <a href="#">小米手机</a>
                        <!--下拉列表,默认隐藏-->
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>1</li>
                                    <li>2</li>
                                    <li>3</li>
                                    <li>4</li>
                                </ul>
                            </div>


                        </div>
                    </li>
                    <li class="item">
                        <a href="#">红米</a>
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>111</li>
                                    <li>2222</li>
                                    <li>333</li>
                                    <li>444</li>
                                </ul>
                            </div>
                        </div>
                    </li>
                    <li class="item">
                        <a href="#">电视</a>
                    </li>
                    <li class="item">
                        <a href="#">笔记本</a>
                    </li>
                    <li class="item">
                        <a href="#">盒子</a>
                    </li>
                    <li class="item">
                        <a href="#">新品</a>
                    </li>
                    <li class="item">
                        <a href="#">路由器</a>
                    </li>
                    <li class="item">
                        <a href="#">智能硬件</a>
                    </li>
                    <li class="item">
                        <a href="#">服务</a>
                    </li>
                    <li class="item">
                        <a href="#">社区</a>
                    </li>
                </ul>
            </div>
            <!--搜索区域-->
            <div class="header-search">
                <form>
                    <input type="text" name="" value="" placeholder="">
                    <input type="submit" name="" class="iconfont" value="&#xe65a;">
                    <div class="search-hot-words">
                        <a href="#">小米8</a>
                        <a href="#">618主会场</a>
                    </div>
                </form>
            </div>
        </div>


        <!--导航下拉区域-->
        <div class="navMenu" style="display: none;">
        </div>
    </div>


</body>
</html>

nav.css 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*小米的导航*/
.site-header{
    width: 100%;
    height: 100px;
    position: relative;
}
/*logo样式*/
.site-header .header-logo{
    float: left;
    margin-top: 22px;
}
/*设置logo里面a标签的样式*/
.header-logo a{
    display: block;
    width: 55px;
    height: 55px;
    background-color: #ff6700;
}
/*a标签里面的图片样式*/
.header-logo a img{
    position: relative;
    left: 3px;
    top: 3px;
}
/*左边文字区域样式*/
.header-nav{
    float: left;
    margin-left: 130px;
}
/*高度和行高一直,让文字垂直居中*/
.header-nav ul{
    height: 100px;
    line-height: 100px;
}
/*ul下的li样式*/
.header-nav ul .item{
    float: left;
    font-size: 16px;
}
/*li里面的a标签*/
.header-nav ul .item a{
    color: #000;
    padding: 26px 10px 43px;
}
/*list下的a*/
.list li{
    float: left;
    width: 300px;
    height: 200px;
}
/*导航下拉区域*/
.site-header .navMenu{
    position: absolute;
    width: 100%;
    /*高度*/
    height: 229px;
    /*div区域背景颜色*/
    background-color: #fff;
    /*阴影效果*/
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    top:100px;
    left: 0;
    /*设置堆叠顺序,用来做压盖效果*/
    z-index: 10;
    /*顶部边框颜色*/
    border-top: 1px solid #e0e0e0;
}


/*搜索框区域*/
.header-search{
    float: right;
    margin-top: 30px;
}
/*from表单*/
.header-search form{
    position: relative;
    width: 276px;
    height: 50px;
}
/*搜索框*/
.header-search input[type='text']{
    /*定义无轮廓*/
    outline: none;
    /*去除边框*/
    border: 0;
    width: 223px;
    height: 48px;
    /*重新定义边框*/
    border: 1px solid #e0e0e0;
    position: absolute;
    font-size: 18px;
    padding: 0 10px;
}
/*搜索按钮*/
.header-search input[type='submit']{
    width: 52px;
    height: 50px;
    /*定义无轮廓*/
    outline: none;
    border: 0;
    /*重新定义边框*/
    border: 1px solid #e0e0e0;
    background-color: #fff;
    position: absolute;
    /*靠最右边*/
    right: 0;
    /*设置iconfont大小*/
    font-size: 20px;
}
/*搜索关键字*/
.search-hot-words{
    position: absolute;
    top: 14px;
    right: 62px;
}
/*搜索关键字的a标签*/
.search-hot-words a{
    color: #757575;
    background-color: #eee;
    font-size: 12px;
    padding: 0 5px;
}
/*a标签浮动效果*/
.search-hot-words a:hover{
    background-color: #ff6700;
    color: #fff;
}
/*购物车下拉区域*/
.topBar-cart .cart-menu{
    /*父相子绝,这里设置绝对定位*/
    position: absolute;
    right: 0;
    width: 300px;
    height: 100px;
    /*阴影效果*/
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    /*堆叠顺序,需要压盖下面的搜索框*/
    z-index: 9;
    background-color: #fff;
    /*下面2行让文字垂直居中*/
    line-height: 100px;
    text-align: center;
}
/*购物车悬停效果*/
.topBar-cart:hover{
    background-color: #fff;
    color: #ff6700;
}

nav.js 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$(function(){
    // 鼠标进入导航栏的文字时
    $('.header-nav .item a').mouseenter(function(){
        console.log('鼠标进入导航栏的文字时');
        //选中的文字变成橘黄色,否则颜色为#000
        $(this).css('color','#ff6700').parent('.item').siblings('li').children('a').css('color','#000');
        // 展开navMenu的div
        $('.navMenu').stop().slideDown(200);
        // 获取a标签下的children的html代码
        var content = $(this).next('.item-children').html();
        //将获取的html代码复制到navMenu中
        $('.navMenu').html(content);
    })
    // 进入navMenu区域时
    $('.navMenu').mouseenter(function(){
        //显示此区域
        $(this).stop().show();
    })
    // 离开a标签时
    $('.header-nav .item a').mouseleave(function(){
        //收起navMenu区域
        $('.navMenu').stop().slideUp(200);
    })
    //离开navMenu区域时
    $('.navMenu').mouseleave(function(){
        // 收起navMenu区域
        $(this).stop().slideUp(200);
    })
})

效果如下:

Day59 小米商城 - 图5

类别栏

类别栏和热卖部分:

Day59 小米商城 - 图6

index.html 代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>小米商城</title>
    <style type="text/css">
        @font-face {font-family: 'iconfont';
            src: url('./font/iconfont.eot');
            src: url('./font/iconfont.eot?#iefix') format('embedded-opentype'),
            url('./font/iconfont.woff') format('woff'),
            url('./font/iconfont.ttf') format('truetype'),
            url('./font/iconfont.svg#iconfont') format('svg');
        }


        .iconfont{
            font-family:"iconfont" !important;
            font-size:16px;font-style:normal;
            -webkit-font-smoothing: antialiased;
            -webkit-text-stroke-width: 0.2px;
            -moz-osx-font-smoothing: grayscale;
        }
    </style>
    <link rel="stylesheet" type="text/css" href="./css/index.css">
    <link rel="stylesheet" type="text/css" href="./css/nav.css">
    <!--种类-->
    <link rel="stylesheet" type="text/css" href="./css/category.css">
    <script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src='js/index.js'></script>
    <!--导航js-->
    <script type="text/javascript" src='js/nav.js'></script>
</head>
<body>


    <!-- 小米的顶部栏 -->
    <div class="site-topBar">
        <div class="container clearfix">


            <!-- 顶部导航栏 -->
            <div class="topBar-l">
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">MIUI</a>
                <span class="sep">|</span>
                <a href="#">loT</a>
                <span class="sep">|</span>
                <a href="#">云服务</a>
                <span class="sep">|</span>
                <a href="#">小爱开放平台</a>
                <span class="sep">|</span>
                <a href="#">金融</a>
                <span class="sep">|</span>
                <a href="#">有品</a>
                <span class="sep">|</span>
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">政企服务</a>
                <span class="sep">|</span>
                <a href="#">Select Region</a>


            </div>
            <!--购物车-->
            <div class="topBar-cart">
                <a href="#" class="cart">
                    <i class="iconfont t">&#xe61a;</i>
                    购物车(0)
                </a>
                <!--默认隐藏-->
                <div  class="cart-menu" style="display: none;">
                    购物车中还没有商品,赶紧选购吧!
                </div>
            </div>
            <!--登录注册区域-->
            <div class="topBar-info">
                <a href="#">登录</a>
                <span class="sep">|</span>
                <a href="#">注册</a>
                <span class="sep">|</span>
                <a href="#">消息通知</a>
            </div>


        </div>
    </div>


    <!-- 导航栏 -->
    <div class="site-header">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--logo图片-->
            <div class="header-logo">
                <a href="#">
                    <img src="./images/mi-logo.png" alt="">
                </a>
            </div>
            <!--导航文字-->
            <div class="header-nav">
                <ul>
                    <li class="item">
                        <a href="#">小米手机</a>
                        <!--下拉列表,默认隐藏-->
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>1</li>
                                    <li>2</li>
                                    <li>3</li>
                                    <li>4</li>
                                </ul>
                            </div>


                        </div>
                    </li>
                    <li class="item">
                        <a href="#">红米</a>
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>111</li>
                                    <li>2222</li>
                                    <li>333</li>
                                    <li>444</li>
                                </ul>
                            </div>
                        </div>
                    </li>
                    <li class="item">
                        <a href="#">电视</a>
                    </li>
                    <li class="item">
                        <a href="#">笔记本</a>
                    </li>
                    <li class="item">
                        <a href="#">盒子</a>
                    </li>
                    <li class="item">
                        <a href="#">新品</a>
                    </li>
                    <li class="item">
                        <a href="#">路由器</a>
                    </li>
                    <li class="item">
                        <a href="#">智能硬件</a>
                    </li>
                    <li class="item">
                        <a href="#">服务</a>
                    </li>
                    <li class="item">
                        <a href="#">社区</a>
                    </li>
                </ul>
            </div>
            <!--搜索区域-->
            <div class="header-search">
                <form>
                    <input type="text" name="" value="" placeholder="">
                    <input type="submit" name="" class="iconfont" value="&#xe65a;">
                    <div class="search-hot-words">
                        <a href="#">小米8</a>
                        <a href="#">618主会场</a>
                    </div>
                </form>
            </div>
        </div>


        <!--导航下拉区域-->
        <div class="navMenu" style="display: none;">
        </div>
    </div>


    <!-- 站点种类 -->
    <div class="site-category">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--左边文字展示-->
            <div class="category-list">
                <ul>
                    <li>
                        <a href="#">
                            手机 电话卡
                            <!--图标-->
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            电视 盒子
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            笔记本
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            智能 家电
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            健康 家居
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            出行 儿童
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            路由器 手机配件
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            移动电源 插线板
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            耳机 音箱
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            生活 米兔
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>


                </ul>


            </div>


            <!--右边轮播图-->
            <div class="category-slider">
                <a href="#">
                    <img src="./images/1.jpg" alt="">
                </a>
                <!--中间切换按钮-->
                <div class="direction">
                    <!--上一个-->
                    <a href="#" class="next"></a>
                    <!--下一个-->
                    <a href="#" class="prev"></a>
                </div>


            </div>
        </div>


    </div>
    <!--热卖-->
    <div class="site-hero">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--左边的文字部分-->
            <div class="hero-l">
                <ul>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>


                </ul>


            </div>
            <!--右边3个图片-->
            <div class="hero-r">
                <ul>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi01.jpg" alt="">
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi02.jpg" alt="">
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi03.png" alt="">
                        </a>
                    </li>


                </ul>


            </div>
        </div>
    </div>


</body>
</html>

category.css 代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*种类样式-左边文字部分*/
.site-category .category-list{
    width: 234px;
    height: 440px;
    float: left;
    /*背景透明度,轮播一张图片时,背景颜色就是图片的颜色,因为透明嘛*/
    background-color: rgba(0,0,0,.6);
    padding-top: 20px;
    position: absolute;
    /*左间距为0*/
    top: 0;
    left: 0;
}
/*文字区域*/
.category-list{
    position: absolute;
    top: 0;
    left: 0;
}
/*将a设置为块级元素,设置宽高*/
.category-list ul li a{
    display: block;
    height: 42px;
    padding-left: 30px;
    line-height: 42px;
    color: #fff;
    position: relative;
}
/*设置iconfont大小*/
.category-list ul li a i{
    position: absolute;
    right: 10px;
    font-size: 12px;
}
/*右边区域a标签居中*/
.category-slider a{
    display: block;
    margin: 0 auto;
}
/*图片大小*/
.category-slider a img{
    width: 1226px;
    height: 460px;
}
/*中间切换按钮区域*/
.direction{
    width: 100%;
}
/*切换按钮*/
.direction a{
    position: absolute;
    width:41px;
    height: 69px;
    top: 50%;
}
/*上一个,按钮是一个精灵图*/
.direction a.next{
    right: 20px;
    background: url('../images/icon-slides.png') no-repeat -121px 0;
}
/*下一个*/
.direction a.prev{
    left: 244px;
    background: url('../images/icon-slides.png') no-repeat -84px 0;
}


/*站点分类*/
.site-hero{
    width: 100%;
    margin-top: 10px;
}
/*热卖左边部分*/
.hero-l{
    float: left;
    width: 228px;
}
/*ul清除浮动*/
.hero-l ul{
    width: 100%;
    overflow: hidden;
    padding: 3px;
    background-color: #5f5750;
}
/*li标签居中*/
.hero-l ul li{
    float: left;
    width: 70px;
    height: 82px;
    padding: 0 3px;
    text-align: center;
    position: relative;
}
/*文字样式*/
.hero-l ul li a{
    display: block;
    font-size: 12px;
    padding-top: 20px;
    color: rgba(255,255,255,.7);;
}
/*图标样式*/
.hero-l ul li a i{
    display: block;
    font-size: 18px;
}
/*背景颜色*/
.hero-l ul li:after{
    content: '';
    position: absolute;
    width: 1px;
    height: 70px;
    top: 3px;
    left: -3px;
    background-color: #665e57;
}
/*右边3个图片*/
.hero-r{
    float: right;
}
/*清除浮动*/
.hero-r ul{
    overflow: hidden;
}
/*li标签间距*/
.hero-r ul li{
    float: left;
    margin-left: 15px;
}
/*图片宽高*/
.hero-r ul li a{
    display: block;
    width: 316px;
    height: 170px;
}
/*图片宽高*/
.hero-r ul li a img{
    width: 316px;
    height: 170px
}

家电

家电部分:

Day59 小米商城 - 图7

index.html 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>小米商城</title>
    <style type="text/css">
        @font-face {font-family: 'iconfont';
            src: url('./font/iconfont.eot');
            src: url('./font/iconfont.eot?#iefix') format('embedded-opentype'),
            url('./font/iconfont.woff') format('woff'),
            url('./font/iconfont.ttf') format('truetype'),
            url('./font/iconfont.svg#iconfont') format('svg');
        }


        .iconfont{
            font-family:"iconfont" !important;
            font-size:16px;font-style:normal;
            -webkit-font-smoothing: antialiased;
            -webkit-text-stroke-width: 0.2px;
            -moz-osx-font-smoothing: grayscale;
        }
    </style>
    <link rel="stylesheet" type="text/css" href="./css/index.css">
    <link rel="stylesheet" type="text/css" href="./css/nav.css">
    <!--种类-->
    <link rel="stylesheet" type="text/css" href="./css/category.css">
    <link rel="stylesheet" type="text/css" href="./css/jiadian.css">
    <script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src='js/index.js'></script>
    <!--导航js-->
    <script type="text/javascript" src='js/nav.js'></script>
</head>
<body>


    <!-- 小米的顶部栏 -->
    <div class="site-topBar">
        <div class="container clearfix">


            <!-- 顶部导航栏 -->
            <div class="topBar-l">
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">MIUI</a>
                <span class="sep">|</span>
                <a href="#">loT</a>
                <span class="sep">|</span>
                <a href="#">云服务</a>
                <span class="sep">|</span>
                <a href="#">小爱开放平台</a>
                <span class="sep">|</span>
                <a href="#">金融</a>
                <span class="sep">|</span>
                <a href="#">有品</a>
                <span class="sep">|</span>
                <a href="#">小米商城</a>
                <span class="sep">|</span>
                <a href="#">政企服务</a>
                <span class="sep">|</span>
                <a href="#">Select Region</a>


            </div>
            <!--购物车-->
            <div class="topBar-cart">
                <a href="#" class="cart">
                    <i class="iconfont t">&#xe61a;</i>
                    购物车(0)
                </a>
                <!--默认隐藏-->
                <div  class="cart-menu" style="display: none;">
                    购物车中还没有商品,赶紧选购吧!
                </div>
            </div>
            <!--登录注册区域-->
            <div class="topBar-info">
                <a href="#">登录</a>
                <span class="sep">|</span>
                <a href="#">注册</a>
                <span class="sep">|</span>
                <a href="#">消息通知</a>
            </div>


        </div>
    </div>


    <!-- 导航栏 -->
    <div class="site-header">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--logo图片-->
            <div class="header-logo">
                <a href="#">
                    <img src="./images/mi-logo.png" alt="">
                </a>
            </div>
            <!--导航文字-->
            <div class="header-nav">
                <ul>
                    <li class="item">
                        <a href="#">小米手机</a>
                        <!--下拉列表,默认隐藏-->
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>1</li>
                                    <li>2</li>
                                    <li>3</li>
                                    <li>4</li>
                                </ul>
                            </div>


                        </div>
                    </li>
                    <li class="item">
                        <a href="#">红米</a>
                        <div class="item-children" style='display: none'>
                            <div class="container">
                                <ul class="list clearfix">
                                    <li>111</li>
                                    <li>2222</li>
                                    <li>333</li>
                                    <li>444</li>
                                </ul>
                            </div>
                        </div>
                    </li>
                    <li class="item">
                        <a href="#">电视</a>
                    </li>
                    <li class="item">
                        <a href="#">笔记本</a>
                    </li>
                    <li class="item">
                        <a href="#">盒子</a>
                    </li>
                    <li class="item">
                        <a href="#">新品</a>
                    </li>
                    <li class="item">
                        <a href="#">路由器</a>
                    </li>
                    <li class="item">
                        <a href="#">智能硬件</a>
                    </li>
                    <li class="item">
                        <a href="#">服务</a>
                    </li>
                    <li class="item">
                        <a href="#">社区</a>
                    </li>
                </ul>
            </div>
            <!--搜索区域-->
            <div class="header-search">
                <form>
                    <input type="text" name="" value="" placeholder="">
                    <input type="submit" name="" class="iconfont" value="&#xe65a;">
                    <div class="search-hot-words">
                        <a href="#">小米8</a>
                        <a href="#">618主会场</a>
                    </div>
                </form>
            </div>
        </div>


        <!--导航下拉区域-->
        <div class="navMenu" style="display: none;">
        </div>
    </div>


    <!-- 站点种类 -->
    <div class="site-category">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--左边文字展示-->
            <div class="category-list">
                <ul>
                    <li>
                        <a href="#">
                            手机 电话卡
                            <!--图标-->
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            电视 盒子
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            笔记本
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            智能 家电
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            健康 家居
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            出行 儿童
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            路由器 手机配件
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            移动电源 插线板
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            耳机 音箱
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            生活 米兔
                            <i class="iconfont">&#xe605;</i>
                        </a>
                    </li>


                </ul>


            </div>


            <!--右边轮播图-->
            <div class="category-slider">
                <a href="#">
                    <img src="./images/1.jpg" alt="">
                </a>
                <!--中间切换按钮-->
                <div class="direction">
                    <!--上一个-->
                    <a href="#" class="next"></a>
                    <!--下一个-->
                    <a href="#" class="prev"></a>
                </div>


            </div>
        </div>


    </div>
    <!--热卖-->
    <div class="site-hero">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--左边的文字部分-->
            <div class="hero-l">
                <ul>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="iconfont">&#xe603;</i>
                            选购手机
                        </a>
                    </li>


                </ul>


            </div>
            <!--右边3个图片-->
            <div class="hero-r">
                <ul>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi01.jpg" alt="">
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi02.jpg" alt="">
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <img src="./images/hongmi03.png" alt="">
                        </a>
                    </li>


                </ul>


            </div>
        </div>
    </div>
    <!--家电-->
    <div class="jiadian">
        <!--定义容器,只要容器中设置了浮动,都会清除浮动-->
        <div class="container clearfix">
            <!--家电头部-->
            <div class="jd-header">
                <h2>家电</h2>
                <!--家电右边文字-->
                <div class="header-item">
                    <a href="#" class="item-active">热门</a>
                    <a href="#">电视影音</a>
                    <a href="#">电脑</a>
                    <a href="#">家居</a>
                </div>
            </div>
            <!--左边部分-->
            <div class="jiadian-box">
                <!--左边2个图片-->
                <div class="box-show">
                    <ul>
                        <li>
                            <a href="#">
                                <img src="./images/VR01.jpg" alt="">
                            </a>
                        </li>
                        <li>
                            <a href="#">
                                <img src="./images/VR02.jpg" alt="">
                            </a>
                        </li>


                    </ul>
                </div>
                <!--右边商品列表-->
                <div class='box-list'>
                    <ul class="brick-list clearfix ">
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                        <li>
                            <div class="flag">
                                <img src="./images/home01.jpg" alt="">
                            </div>
                            <h3>
                                <a href="#">小米电视4A 43英寸青春版</a>
                            </h3>
                            <p>全高清屏 / 人工智能语音</p>
                            <p><span>1399</span><del>1699</del></p>
                        </li>
                    </ul>
                </div>


            </div>
        </div>
    </div>


</body>
</html>

jiadian.css 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*家电样式*/
/*总区域*/
.jiadian{
    width: 100%;
    margin-top: 40px;
    background-color: #f5f5f5;
}
/*头部文字*/
.jd-header{
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}
/*头部标题*/
.jd-header h2{
    float: left;
    font-weight: 200;
}
/*头部右边文字*/
.jd-header .header-item{
    float: right;
}
/*商品列表a标签*/
.header-item a{
    /*inline 内联(行级)元素,能在同一行展示*/
    display: inline-block;
    color: #000;
    font-size: 16px;
    margin-left: 25px;
}
/*选中样式*/
.header-item a.item-active{
    color: #ff6700;
    border-bottom: 2px solid #ff6700;
}
/*hover样式,需要用js来做,因为它需要删除没有被选中的样式*/
/*.header-item a:hover{*/
    /*color: #ff6700;*/
    /*border-bottom: 2px solid #ff6700;*/
/*}*/
/*清除浮动*/
.jiadian-box{
    width: 100%;
    overflow: hidden;
}
/*并排展示*/
.jiadian-box .box-show{
    float: left;
}
/*a标签*/
.box-show ul li a{
    display: block;
    width: 234px;
    height: 300px;
    margin-top: 15px;
    position: relative;
    top:0;
    left: 0;
}
/*图片样式*/
.box-show ul li a img{
    width: 234px;
    height: 300px;
}
/*悬停样式*/
.box-show ul li a:hover{
    top: -2px;
    /*阴影效果*/
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
}
/*右边商品*/
.box-list{
    float: left;
    width: 992px;
    margin-top: 15px;
}
.box-list ul{
    width: 100%;
}
/*li样式*/
.box-list ul li{
    float: left;
    width: 234px;
    height: 246px;
    margin-left: 14px;
    padding: 34px 0 20px;
    background-color: #fff;
    margin-bottom: 15px;
    position: relative;
}
.box-list ul li a{
    display: block;
}
.box-list ul li .flag{
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
.box-list ul li img{
    width: 150px;
    height: 150px;




}
.box-list ul li h3{
    width: 200px;
    margin: 0 17px;
    font-size: 14px;
    text-align: center;
    font-weight: 200;
}
.box-list ul li h3 a{
    color: #000;


}
.box-list ul li p{
    width: 100%;
    text-align: center;
}
.box-list ul li:hover{
    top: -2px;
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
}

网页效果:

Day59 小米商城 - 图8

上面是演示部分代码。

下面是我写的完整代码:

百度网盘下载链接

链接: https://pan.baidu.com/s/1MfDEYfPOR36SpBIN9LMWXg 密码:4axk

网页效果:

Day59 小米商城 - 图9