-
Notifications
You must be signed in to change notification settings - Fork 0
/
page2.html
43 lines (38 loc) · 1.19 KB
/
page2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>款式和颜色</title>
<link rel="stylesheet" href="page2.css">
</head>
<body>
<!-- 版心 -->
<div id="main">
<!-- 帘子 -->
<div id="curtain">
</div>
<!-- 挂衣杆 -->
<ul id="ganzi">
<!-- 衣服 -->
<li id="c1" onclick="cloth(1)" ></li>
<li id="c2" onclick="cloth(2)"></li>
<li id="c3" onclick="cloth(3)"></li>
</ul>
<!-- 选择按钮 -->
<div id="select">
<!-- 颜色 -->
<button id="none" onclick="none()"></button>
<button id="color1" onclick="color(1)"></button>
<button id="color2" onclick="color(2)"></button>
<button id="color3" onclick="color(3)"></button>
</div>
<!-- 下一步 -->
<div id="sheep">
<a href="page3.html" onclick="get()">下一步</a>
</div>
</div>
</body>
<script src="page2.js"></script>
</html>