-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 805 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 805 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fire Simulator</title>
<meta name="mobile-web-app-capable" content="yes">
<style>
* {
user-select: none;
}
html, body {
overflow: hidden;
}
body {
margin: 0;
position: fixed;
width: 100%;
height: 100%;
}
canvas {
width: 100%;
height: 100%;
}
#debug-box {
position: fixed;
z-index: 1;
background-color: transparent;
color: #fff;
font-family: monospace;
}
</style>
</head>
<body>
<div id="debug-box">
</div>
<canvas id="glCanvas"></canvas>
<script src="./dist.js"></script>
</body>
</html>