-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
94 lines (91 loc) · 3.49 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=0.6, maximum-scale=0.6, minimum-scale=0.6">
<title>商品列表</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/shop.css">
<!-- <script type="text/javascript" src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script> -->
<script type="text/javascript" src="js/jquery-1.11.0.js"></script>
<script type="text/javascript" src="js/js.js"></script>
</head>
<body>
<div class="layout">
<!-- 搜索头部 -->
<header>
<div class="header">
<div class="icon_logo"><img src="" alt="logo"></div>
<!-- 小键盘的 Enter 键改编成 搜索 按钮 -->
<form action="#">
<span class="iconfont"></span>
<input type="search" placeholder="输入商家、分类或商圈">
</form>
<a href="#" class="icon_scan"></a>
<a href="#" class="icon_notice"></a>
</div>
</header>
<article>
<div class="article">
<ul>
<li>
<a href="detail.html" class="shop-list" id="produce1" name="100">
<img src="images/img1.png" alt="">
<div class="descript">
<h2>Cross拖鞋</h2>
<p>Crocs卡骆驰休闲鞋 中性前鋒克骆格平底沙滩洞洞鞋防水雨鞋/14300 炭灰/蔚蓝-0F2 M4/W6</p>
<p>¥100.00<span>¥200.00</span></p>
</div></a>
<i class="add-list"></i>
</li>
<li>
<a href="detail.html" class="shop-list" id="produce2" name="150">
<img src="images/img1.png" alt="">
<div class="descript">
<h2>Cross拖鞋</h2>
<p>Crocs卡骆驰休闲鞋 中性前鋒克骆格平底沙滩洞洞鞋防水雨鞋/14300 炭灰/蔚蓝-0F2 M4/W6</p>
<p>¥150.00<span>¥200.00</span></p>
</div></a>
<i class="add-list"></i>
</li>
<li>
<a href="detail.html" class="shop-list" id="produce3" name="100">
<img src="images/img1.png" alt="">
<div class="descript">
<h2>Cross拖鞋</h2>
<p>Crocs卡骆驰休闲鞋 中性前鋒克骆格平底沙滩洞洞鞋防水雨鞋/14300 炭灰/蔚蓝-0F2 M4/W6</p>
<p>¥100.00<span>¥200.00</span></p>
</div></a>
<i class="add-list"></i>
</li>
<li>
<a href="detail.html" class="shop-list" id="produce4" name="140">
<img src="images/img1.png" alt="">
<div class="descript">
<h2>Cross拖鞋</h2>
<p>Crocs卡骆驰休闲鞋 中性前鋒克骆格平底沙滩洞洞鞋防水雨鞋/14300 炭灰/蔚蓝-0F2 M4/W6</p>
<p>¥140.00<span>¥200.00</span></p>
</div></a>
<i class="add-list"></i>
</li>
</ul>
</div>
</article>
<!-- footer -->
<div class="pro_ft"></div>
<footer>
<div class="footer">
<ul>
<li><a href="index.html"><span class="icon_main"></span><p>首页</p></a></li>
<li><a href="shop.html"><span class="icon_sup" id="action"></span><p id="action">商品列表</p></a></li>
<li id="gouwu"><a href="shopcar.html"><span class="icon_car"><i class="many">0</i></span><p>购物车</p></a></li>
<li><a href="#"><span class="icon_my"></span><p>我的</p></a></li>
</ul>
</div>
</footer>
<div id="temp" style="display: none;">0</div>
</div>
</div>
</body>
</html>