-
Notifications
You must be signed in to change notification settings - Fork 0
/
page4.html
37 lines (37 loc) · 1.23 KB
/
page4.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
<!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="page4.css">
</head>
<body>
<!-- 版心 -->
<div id="main">
<!-- 帘子 -->
<div id="curtain">
</div>
<!-- 挂衣杆 -->
<div id="ganzi">
<!-- 衣服 -->
<div id="cloth"></div>
</div>
<!-- 选择按钮 -->
<div id="select">
<button id="none" onclick="none()"></button>
<button id="decorate1" onclick="decorate(1)"></button>
<button id="decorate2" onclick="decorate(2)"></button>
<button id="decorate3" onclick="decorate(3)"></button>
<button id="decorate4" onclick="decorate(4)"></button>
</div>
<!-- 下一步 -->
<div id="sheep">
<a href="wait2.html">完成</a>
</div>
<a id="back" href="page3.html"></a>
</div>
</body>
<script src="page4.js"></script>
</html>