-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1011 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Three.js Project</title>
<style>
body {
font-family: Helvetica;
background-color: #101010;
color: #fff;
margin: 0px;
overflow: hidden;
}
canvas { width: 100%; height: 100% }
a { color: #f00; }
</style>
<script src="js/threejs/three.min.js"></script>
<script src="js/effects/WebVR.js"></script>
<script src="js/effects/VREffect.js"></script>
<script src="js/effects/perlin.js"></script>
<script src="js/controls/PointerLockControl.js"></script>
<script src="js/controls/Detector.js"></script>
<script src="js/controls/VRControls.js"></script>
</head>
<body>
<div id="blocker">
<div id="instructions">
<span style="font-size:40px">Click to play</span>
<br />
MOUSE = Look around
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>