-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.html
63 lines (63 loc) · 1.71 KB
/
debug.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Leaving Room</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: 'Muli';
font-style: normal;
font-weight: normal;
src: local('Muli Regular'), local('Muli-Regular'),
url('resources/fonts/muli-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('resources/fonts/muli-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body {
font-family: "Muli";
margin: 0;
background: #404040;
}
#loading {
color: #888;
position: fixed;
font-size: 32px;
}
#canvas {
position: fixed;
width: 1280px;
height: 720px;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
</style>
</head>
<body>
<div id="loading">
Loading...
</div>
<div id="wrapper">
<canvas id="canvas" glayout="0" width="1280" height="720"></canvas>
</div>
<div>
<audio loop preload id="audio_1">
<source src="resources/1.ogg" type="audio/ogg">
<source src="resources/1.mp3" type="audio/mp3">
</audio>
<audio loop preload id="audio_2">
<source src="resources/2.ogg" type="audio/ogg">
<source src="resources/2.mp3" type="audio/mp3">
</audio>
<audio loop preload id="audio_3">
<source src="resources/3.ogg" type="audio/ogg">
<source src="resources/3.mp3" type="audio/mp3">
</audio>
</div>
<script src="bin/glayout.js"></script>
<script>
document.body.removeChild(document.getElementById('loading'));
__glayoutLib__.setLogLevelNum(-1);
</script>
</body>