-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (65 loc) · 4.1 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
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<!-- Head -->
<head>
<meta charset="utf-8">
<title>Save the Forest!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, minimal-ui" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser-arcade-physics.min.js"></script>
<script src="http://netgfx.com/trunk/games/phaser_modals/modal.js"></script>
<div style="font-family:'Luckiest Guy',cursive;visibility:hidden;opacity:0;position:fixed;"> </div>
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<!-- Boostrap css -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Firebase scripts -->
<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.4.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.4.0/firebase-database.js"></script>
<script src="js/firebase.js"></script>
</head>
<!-- Body -->
<body id="bodyGeneral" onload="loaded()">
<!-- Header -->
<div id='heading'>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/index.html">Save the Forest</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#myNavBar" aria-controls="myNavBar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myNavBar">
<div class="navbar-nav">
<a class="nav-item nav-link active d-inline btn btn-outline-success myButton" href="/index.html">Play<span class="sr-only">(current)</span></a>
<a class="nav-item nav-link d-inline btn btn-outline-success myButton" href="/pages/learn/learn.html">Learn</a>
<a class="nav-item nav-link d-inline btn btn-outline-success myButton" href="/pages/about/about.html">About</a>
</button>
</div>
</div>
</nav></div>
<!-- Div to hold the game -->
<div id="game"></div>
<div id="msgLandscape" style="display: none;">
<h2>Please switch to landscape to play the game!</h2>
<img id="orientationIcon" src="/assets/images/orientation.png" alt="Change to landscape">
</div>
<!-- Necessary Javascript files -->
<script src="./js/phaser-v3.16.2.js"></script>
<script src="./js/src/scenes/EnterName.js"></script>
<script src="./js/src/scenes/BootScene.js"></script>
<script src="./js/src/scenes/PreloadScene.js"></script>
<script src="./js/src/scenes/TitleScene.js"></script>
<script src="./js/src/scenes/GamePreload.js"></script>
<script src="./js/src/scenes/GameScene.js"></script>
<script src="./js/src/scenes/GameOverScene.js"></script>
<script src="./js/src/scenes/LoadKeyboard.js"></script>
<script src="js/main.js"></script>
<!-- Table to hold the high scores -->
<table id="scoreTable"></table>
</body>
<!-- Mobile script -->
<script src="js/mobile.js"></script>
<!-- Bootstrap Resources -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</html>