-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 883 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Virtual Wait Room</title>
<style type="text/css">
html, body, canvas, progress, #fsb {
position: fixed;
top: 0;
left: 0;
margin: 0;
border: 0;
padding: 0;
}
html, body, canvas, progress {
width: 100%;
height: 100%;
}
button {
padding: 1em;
}
</style>
<script type="text/javascript" src="three.min.js"></script>
<script type="text/javascript" src="Primrose.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<canvas id="frontBuffer" tabindex="1"></canvas>
</body>
</html>