-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (31 loc) · 910 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Internet Explorer</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<style>
html,
body {
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<script src="lib/three.min.js"></script>
<script src="lib/VRControls.js"></script>
<script src="lib/VREffect.js"></script>
<script>
window.WebVRConfig = {
MOUSE_KEYBOARD_CONTROLS_DISABLED: true,
};
</script>
<script src="lib/webvr-polyfill.js"></script>
<script src="lib/webvr-manager.js"></script>
<script src="index.js" type="module"></script>
</body>
</html>