-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
margin: 0;
background-color: black;
height: 100%;
width: 100%;
overflow: hidden;
}
#canvas {
top: 0;
width: 100%;
height: 100%;
}
.no-webgl2 {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
color: red;
font-size: 1em;
display: none;
}
</style>
</head>
<body>
<div class="webgl-container">
<canvas id="canvas"></canvas>
<audio id="music" src="music.mp3" autoplay loop></audio>
<div class="no-webgl2">
Your browser does not support WebGL2. Please download the latest desktop version of .
<a href="https://www.google.com/chrome/browser/desktop/" target="_blank">Chrome</a> or
<a href="https://www.mozilla.org/en-US/firefox/new/" target="_blank">Firefox</a>.
<div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="build/bundle.js"></script>
</div>
</body>
</html>