-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (55 loc) · 2.65 KB
/
Copy pathindex.html
File metadata and controls
84 lines (55 loc) · 2.65 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-status-bar" content="#D7E8FF">
<meta name="theme-color" content="#D7E8FF">
<title>Burgerbird 2.0</title>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="css/styles.css">
<link rel="apple-touch-icon" href="assets/images/app_icons/icon_72x72.png">
</head>
<body>
<div id="game">
<!--<div id="player">
<div></div>
</div>-->
<div class="screen" id="screen_02">
<canvas id="game_canvas" width="1000" height="560"></canvas>
<canvas id="debug_canvas" width="1000" height="560"></canvas>
<div id="screen_02__day_night_disk"></div>
<label id="screen_02__scores_label">0</label>
<button class="image_button" id="screen_02__pause_button"></button>
<button class="image_button" id="screen_02__play_button"></button>
</div>
<div class="screen" id="start_screen">
<button class="image_button" id="start_screen__play_button"></button>
</div>
<div class="screen" id="game_over_screen">
<div>
<label><!--Game Over--></label>
<div>
<div>
<label>SCORE:</label><label id="game_over_screen__scores_label">0</label>
</div>
<div>
<label>COINS:</label><label id="game_over_screen__coins_label">0</label>
</div>
<div>
<label>DISTANCE:</label><label id="game_over_screen__distance_label">0</label>
</div>
</div>
<button class="image_button" id="game_over_screen__restart_button"></button>
</div>
</div>
<div id="game_screen_hider" style="position: absolute; width: 100%; height: 100%; background-color: white"></div>
<label id="fps_counter" style="position: absolute; left: 10px; top: 10px;"></label>
</div>
<script src="js/pixi.min.js"></script>
<script src="js/pixi-timer.js"></script>
<script src="js/box2d.min.js"></script>
<script src="js/gsap.min.js"></script>
<script src="js/game.js"></script>
</body>
</html>