-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
90 lines (87 loc) · 2.52 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
83
84
85
86
87
88
89
90
<html>
<head>
<script data-goatcounter="https://glaze.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<link rel="stylesheet" href="dist/main.css" />
<style>
table.customTable {
width: 800px;
background-color: #ffffff;
border-collapse: collapse;
border-width: 1px;
border-color: #000000;
border-style: solid;
color: #000000;
}
table.customTable td,
table.customTable th {
text-align: left;
border-width: 1px;
border-color: #000000;
border-style: solid;
padding: 2px;
font-size: 12px;
font-family: Arial, sans-serif;
}
table.customTable thead {
background-color: #ffffff;
}
</style>
</head>
<h1>GlazeJS Demo</h1>
Things to do:
<ul>
<li>Switches open things</li>
<li>Use the teleporter</li>
<li>Heavy things help you sink</li>
<li>Try to get the water container</li>
</ul>
<h3>Keys:</h3>
<table class="customTable">
<thead>
<tr>
<th>Key</th>
<th>Action</th>
<th>Key</th>
<th>Action</th>
<th>Key</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>WASD</b></td>
<td>Move/Fly</td>
<td><b>Space</b></td>
<td>Fire Projectile</td>
<td><b>1-2</b></td>
<td>Select Projectile</td>
</tr>
<tr>
<td><b>H</b></td>
<td>Hold Item</td>
<td><b>J</b></td>
<td>Drop Item</td>
<td><b></b></td>
<td></td>
</tr>
<tr>
<td><b>E</b></td>
<td>Aim</td>
<td><b>L</b></td>
<td>Torch</td>
<td></td>
<td></td>
</tr>
<tr>
<td><b>U</b></td>
<td>Bees!!</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<h3>Game:</h3>
<iframe src="dist/index.html" width="1280" height="800" frameborder="0"></iframe>
</html>