-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.4 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
<!-- border-image/-webkit-border-image fail with this: <!DOCTYPE html>-->
<html>
<head>
<title>WebGL Game</title>
<link rel="stylesheet" type="text/css" href="style/game.css">
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js"></script>
<script src="scripts/resourcemanager.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/audioutils.js"></script>
<script src="scripts/webglutils.js"></script>
<script src="scripts/framerate.js"></script>
<script src="scripts/tilelist.js"></script>
<script src="scripts/gameevents.js"></script>
<script src="scripts/gameui.js"></script>
<script src="scripts/gamelogic.js"></script>
<script src="scripts/game.js"></script>
</head>
<body onload="start()" onkeydown="keydown(event)" onkeyup="keyup(event)">
<canvas id="game">
Please install a browser capable of WebGL, and enable WebGL, to see
this content.
</canvas>
<div id="ack">"<a href="http://lostgarden.com/2007/05/dancs-miraculously-flexible-game.html">Planet Cute</a>" art by Daniel Cook (<a href="http://lostgarden.com/">Lostgarden.com</a>) </div>
<div id="framerate"></div>
<div id="progress-box">
<div id="progress-bar"></div>
</div>
<div id="bubble"><span id="bubble-speech"></span><a id="bubble-next" href="#" onclick="banishBubble()"><br>⬇</a></div>
</body>
</html>