-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
48 lines (48 loc) · 1.89 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
48
<!DOCTYPE html>
<html>
<head>
<title>Kandi Runner</title>
<link rel="stylesheet" href="kandi.css" type="text/css" media="screen">
<script type="text/javascript" src="jquery.1.10.2.min.js"></script>
</head>
<body>
<div class="wrapper">
<div class="sound sound-off"></div>
<div id="menu">
<div id="progress">
<div id="percent">Downloading: <span id="p"></span></div>
<progress id='progress-bar' value = '0'></progress>
</div>
<div id="main">
<h1>Kandi Runner</h1>
<ul>
<li><a href="#" class="play">Start Game</a></li>
<li><a href="#" class="credits">Credits</a></li>
</ul>
</div>
<div id="credits">
<ul>
<li class="artwork">Character design and art: <a href="http://www.acrylicana.com/">Mary Winkler</a></li>
<li class="artwork">Walk cycle animation: <a href="http://vimeo.com/hellostudios">Adam Everett Miller</a></li>
<li class="artwork">Platformer tiles: <a href="http://www.kenney.nl/">Kenney</a></li>
</ul>
<ul>
<li class="music">Game music: <a href="http://opengameart.org/content/jump-and-run-8-bit">bart</a></li>
<li class="music">Jump sound effect: <a href="http://opengameart.org/content/platformer-jumping-sounds">dklon</a></li>
<li class="music">Game over music: <a href="http://opengameart.org/content/lose-music-3">remaxim</a></li>
</ul>
<ul>
<li class="developer">Developer: <a href="http://blog.sklambert.com/">Steven Lambert</a></li>
</ul>
<div><a href="#" class="back">Back</a></div>
</div>
</div>
<canvas id="canvas" width="800" height="480"></canvas>
<div id="game-over">
<h2>You ran <span id="score"></span> meters!</h2>
<a href="#" class="restart">Try again?</a>
</div>
</div>
<script type="text/javascript" src="kandi.js"></script>
</body>
</html>