-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.59 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
42
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./hanoi.css" rel="stylesheet" />
<title>汉诺塔演示 - By SomeBottle</title>
</head>
<body>
<div class="showcase" id="showcase">
<span class="notice" id="notice"></span>
<div class="tower">
<div class="pole"></div>
<div class="base"></div>
</div>
<div class="tower">
<div class="pole"></div>
<div class="base"></div>
</div>
<div class="tower">
<div class="pole"></div>
<div class="base"></div>
</div>
</div>
<div class="panel">
<input type="button" id="playBtn" value="播放" />
<input type="button" id="prevBtn" value="上一步" />
<input type="button" id="nextBtn" value="下一步" />
<input type="button" id="resetBtn" value="重置" /><br>
<label for="plateNum">盘数:</label><input type="number" id="plateNum" value="4" min="1" max="10" /><br>
<label for="speed">速度:</label>
<select id="speed">
<option value="1.0">0.5x</option>
<option value="0.5" selected>1.0x</option>
<option value="0.33">1.5x</option>
<option value="0.25">2.0x</option>
<option value="0.1">5.0x</option>
</select>
</div>
<footer>@SomeBottle</footer>
<script src="./hanoi.js"></script>
</body>