-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<title>Phaser Starter</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="assets/img/favicon.png">
<style>
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background: #111;
flex-direction: column;
}
.chooseYourGame{
height: 100px;
/*width: 100%;*/
padding: 10px;
}
.games div{
display: flex;
align-items: center;
}
#wrapper {
margin: 0 auto;
}
#wrapper canvas {
height: 288px;
}
</style>
<head>
</head>
<body>
<div class="chooseYourGame">
<button id="WrapAroundButton">Tommy's adventure</button>
<button id="SpacePhaserButton">SpacePhaser</button>
<button id="SnoweyButton">Snowey mountain</button>
</div>
<div class="games">
<div id="wrapper">
<div id="WrapAround"></div>
</div>
<div id="wrapper">
<div id="SnowyMountain"></div>
</div>
<div id="MyGameTests"></div>
</div>
<script type="text/javascript" src="./dist/vendor.bundle.js"></script><script type="text/javascript" src="./dist/bundle.js"></script></body>
</html>