-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 935 Bytes
/
index.html
File metadata and controls
40 lines (32 loc) · 935 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>VR hyperlinks</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
</main>
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128">
<foreignObject width="128" height="128">
<button>Link</button>
</foreignObject>
</svg>
<canvas class="htmlElement"></canvas>
<script>
WebVRConfig = {
BUFFER_SCALE: 1.0
}
</script>
<script src="three.js"></script>
<script src="TweenMax.min.js"></script>
<script src="OrbitControls.js"></script>
<script src="base64js.min.js" charset="utf-8"></script>
<script src="MTLLoader.js"></script>
<script src="OBJLoader.js"></script>
<script src="GearVRController.js"></script>
<script src="dist/script.js"></script>
</body>
</html>