-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.7 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Star Commander</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body onload="init();">
<canvas id="game-canvas" alt="Star Commander" width="800" height="600"></canvas>
<!-- Game Content -->
<div class="hidden">
<img id="img_title" src="img/title.png" width="800" height="600" />
<img id="img_menu" src="img/menu.png" width="300" height="200" />
<img id="img_fx" src="img/fx.png" width="40" height="40" />
<img id="img_ship" src="img/ship.png" width="150" height="200" />
<img id="img_lander" src="img/lander.png" width="80" height="65" />
<img id="img_galaxyship" src="img/galaxyship.png" width="50" height="100" />
<img id="img_planet" src="img/planet.png" width="150" height="150" />
<img id="img_galaxyplanets" src="img/galaxyplanets.png" width="150" height="150" />
<img id="img_anim" src="img/anim.png" width="100" height="25" />
<img id="img_ore" src="img/ore.png" width="30" height="30" />
<img id="img_map" src="img/map.png" width="243" height="93" />
<img id="img_surface_0" src="img/surface0.png" width="2400" height="900" />
<img id="img_surface_1" src="img/surface1.png" width="2400" height="900" />
<img id="img_surface_2" src="img/surface2.png" width="2400" height="900" />
</div>
<!-- External JS Modules -->
<script src="rAF.js"></script>
<script src="jquery-1.8.3.min.js"></script>
<!-- Game JS Modules -->
<script src="src/content.js"></script>
<script src="src/library.js"></script>
<script src="src/input.js"></script>
<script src="src/view.js"></script>
<script src="src/state.js"></script>
<script src="src/game.js"></script>
<script src="src/main.js"></script>
</body>
</html>