-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (47 loc) · 827 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<title>3d-JS</title>
</head>
<body>
<div id=stage>
<canvas id="canvas" width=10 height=10>
Too bad.
</canvas>
</div>
<br>
<canvas id="left" width=20 height=20>
</canvas>
<canvas id="right" width=20 height=20>
</canvas>
<canvas id="up" width=20 height=20>
</canvas>
<canvas id="down" width=20 height=20>
</canvas>
<br>
<span class=perfInfo id="frame-rate">FR</span>
<span class=perfInfo id="runtime-perc">RP</span>
<br>
<code id=debug></code>
<code id=debug2></code>
<script src="dist/main.bundle.js">
</script>
<div id="console"></div>
</body>
<style>
body {
margin: 0;
padding: 0;
}
canvas {
margin: 0;
padding: 0;
background-color: black;
}
#console {
font-family: Menlo;
}
.perfInfo {
font-size: 12pt;
}
</style>
</html>