-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Shake</title>
<script type="text/javascript" src="jquery-2.1.3.min.js"></script>
<script src="main.js" type="text/javascript"></script>
</head>
<body>
<canvas id="canvas" width="450" height="450"></canvas>
<div class="buttons">
<button type="submit" id="play">Play</button>
<button type="submit" id="restart">Restart</button>
<button type="submit" id="pause">Pause</button>
<select id="speed_shake">
<option value="40">40</option>
<option value="50">50</option>
<option value="60" selected="selected">60</option>
<option value="70">70</option>
<option value="80">80</option>
<option value="90">90</option>
<option value="100">100</option>
<option value="110">110</option>
</select>
</div>
<div id="score">
<p id="scr">
</p>
</div>
<link rel="stylesheet" href="shake_style.css">
</body>
</html>