-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.14 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="shop">
<div id="header">
<span>排序</span>
<a href="javascript:;" attrName="time">
上架时间
<i class="up"></i>
<i class="down"></i>
</a>
<a href="javascript:;" attrName="hot">
热度
<i class="up"></i>
<i class="down"></i>
</a>
<a href="javascript:;" attrName="price">
价格
<i class="up"></i>
<i class="down"></i>
</a>
</div>
<ul id="shopList">
<!--<li>
<img src="img/1.jpg" alt="">
<p class="title">华为最牛逼产品六</p>
<p class="hot">热度</p>
<del>¥9999</del>
<span>¥992</span>
<p class="time">上架时间:2018-08-30</p>
</li>-->
</ul>
</div>
</body>
</html>
<script src="index.js"></script>