-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (51 loc) · 1.03 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
<html>
<head>
<style>
html,body {
margin: 0;
padding: 0;
background-color: #000;
}
canvas {
image-rendering: pixelated;
}
#game {
display: block;
margin-left: auto;
margin-right: auto;
}
#settings {
width: 200px;
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 2;
color: #fff;
}
legend {
color: #fff;
}
</style>
</head>
<body>
<fieldset id="settings">
<legend>Settings</legend>
<h3>Select Player</h3>
<select id="playerSelection">
<option value="Ragnar" selected>Ragnar</option>
<option value="Alena">Alena</option>
<option value="Brey">Brey</option>
<option value="Cristo">Cristo</option>
<option value="Taloon">Taloon</option>
<option value="Nara">Nara</option>
<option value="Mara">Mara</option>
<option value="Hero">Hero</option>
</select>
<h3>Sound</h3>
<input type="checkbox" id="mute_sound" /><label for="mute_sound">Mute Sound</label>
</fieldset>
<canvas id="game"></canvas>
<script src="dist/js/app.js"></script>
</body>
</html>