forked from mthadley/lzs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 895 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ray's Life Bringer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="assets/phaser/phaser-arcade-physics.min.js"></script>
<link rel="stylesheet" href="assets/fonts/badabb.css" type="text/css" charset="utf-8">
<script src="lzs.js"></script>
<style>
body {
background-color: #3A3B43;
}
#lzs canvas {
margin-left: auto;
margin-right: auto;
}
#gameControls {
margin-top: 5px;
}
.control-button {
display: inline-block;
}
</style>
</head>
<body>
<div id="lzs"></div>
<div id="gameControls">
<button class="control-button" id="pause" onClick="togglePaused();">Pause</button>
<button class="control-button" id="mute" onClick="toggleMute();">Mute</button>
</div>
</body>
</html>