-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (47 loc) · 1.46 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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SkiFree</title>
<script src="js/bundle.js"></script>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/jquery-ui.js"></script>
<link rel="stylesheet" href="css/ski.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/jquery-ui.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class='content group'>
<h1 class='welcome'>Press DOWN to start skiing!</h2>
<canvas id='ski'></canvas>
<button class='newgame'>Restart</button>
<section class='options'>
<ul class='speed'>
<h2>Speed</h2>
<li id='speed1' class='selected'>Slow</li>
<li id='speed2'>Fast</li>
<li id='speed3'>Reckless</li>
</ul>
<ul class='density'>
<h2>Obstacle Density</h2>
<li id='obj1'>Low</li>
<li id='obj2' class='selected'>Medium</li>
<li id='obj3'>High</li>
</ul>
<ul class='monster'>
<h2>Snow Monster</h2>
<li id='mon1' class='selected'>On</li>
<li id='mon0'>Off</li>
</ul>
<ul class='physics'>
<h2>Physics</h2>
<li id='phys1' class='selected'>On</li>
<li id='phys0'>Off</li>
</ul>
<ul class='friction'>
<h2>Friction</h2>
<div id='slider'></div>
</ul>
</section>
</div>
</body>
</html>