-
Notifications
You must be signed in to change notification settings - Fork 84
/
index.html
70 lines (56 loc) · 1.97 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=yes">
<link rel="stylesheet" type="text/css" href="assets/css/index.css" />
<title>Scroller</title>
</head>
<body style="background: #0f0f0f; display: none">
<div id="background" class="layer"></div>
<div id="backgroundSprites" class="layer"></div>
<div id="enemySprites" class="layer"></div>
<div id="hero"></div>
<div id="title" class="overlayContainer">
PhoneGap: Legends
</div>
<div id="hud" class="overlayContainer">
<table>
<tr>
<td></td>
<td class="stats" style="font-size: 0.8em;">HP</td>
</tr>
<tr class="active">
<td>Trice</td>
<td class="stats">240/300</td>
</tr>
<tr>
<td>Coenraets</td>
<td class="stats">270/350</td>
</tr>
<tr>
<td>Schinsky</td>
<td class="stats">260/390</td>
</tr>
<tr>
<td>Wilson</td>
<td class="stats">999/999</td>
</tr>
</table>
</div>
<div id="controls" class="layer">
<div id="touchSegment0" class="touchSegment"></div>
<div id="touchSegment1" class="touchSegment"></div>
<div id="compass"></div>
<div id="touch"></div>
</div>
<!-- THIS LINK JUST ADDED FOR ONLINE VERSION: http://tricedesigns.com/portfolio/phonegap_legends/ -->
<!--
<a href="http://www.tricedesigns.com/2013/03/22/phonegap-legends-a-sample-game-app/" target="_blank" style="position: absolute; bottom:10px; right:10px; background-color: #c00; border: 1px solid white; padding:10px; border-radius: 10px;">Learn How This Was Built</a>
-->
</body>
<script src="js/raf.js"></script>
<script src="cordova.js"></script>
<script src="js/zepto.js"></script>
<script src="js/index.js"></script>
</html>