-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·52 lines (52 loc) · 2.21 KB
/
index.html
File metadata and controls
executable file
·52 lines (52 loc) · 2.21 KB
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
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Kandi Runner</title>
<link rel="stylesheet" href="kandi.css" type="text/css" media="screen">
<script type="text/javascript" src="jquery.2.1.1.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="javascript:void(0)" class="button play">Start Game</a></li>
<li><a href="javascript:void(0)" class="button 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>
<a href="javascript:void(0)" class="button back">Back</a>
</div>
</div>
<canvas id="canvas" width="800" height="480">
<p>You're browser does not support the required functionality to play this game.</p>
<p>Please update to a modern browser such as <a href="www.google.com/chrome/">Google Chrome</a> to play.</p>
</canvas>
<div id="game-over">
<h2>You ran <span id="score"></span> meters!</h2>
<a href="javascript:void(0)" class="button restart">Try again?</a>
</div>
</div>
<script type="text/javascript" src="kandi.js"></script>
</body>
</html>