-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 2.73 KB
/
index.html
File metadata and controls
68 lines (65 loc) · 2.73 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script type="text/javascript" src="libs/phaser.min.js"></script>
<script type="text/javascript" src="js/Controls.js"></script>
<script type="text/javascript" src="js/Entities.js"></script>
<script type="text/javascript" src="js/GameWorld.js"></script>
<script type="text/javascript" src="js/Player.js"></script>
<script type="text/javascript" src="js/System.js"></script>
<script type="text/javascript" src="js/GameController.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<p></p>
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading"><span class="glyphicon glyphicon-heart-empty" aria-hidden="true"></span> InExile </div>
<div class="panel-body text-center">
I created this website as my first attempt to learn web games development, using the phaser io framework.
Originally i followed the "Make your first game" tutorial on the phaser <a href="https://phaser.io/tutorials/making-your-first-phaser-game">website</a>.
Since then the project has been adapted for my CI328 Internet games development module.
</div>
</div>
</div>
</div>
<p></p>
<div class="row">
<div class="col-md-9">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body well-lg">
<div id="GameWindow">
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-info">
<div class="panel-heading"><span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> Instructions </div>
<div class="panel-body well-sm">
<div>
<ul>
<li><span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span> Move Left</li>
<li><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> Move Right</li>
<li><span class="glyphicon glyphicon-arrow-up" aria-hidden="true"></span> Jump</li>
<li><span class="glyphicon glyphicon-minus" aria-hidden="true"></span> Attack</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2">
</div>
<script type="text/javascript">
window.onload = main();
</script>
</body>
</html>