-
Notifications
You must be signed in to change notification settings - Fork 4
/
vr.html
37 lines (30 loc) · 795 Bytes
/
vr.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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>mesh-ui</title>
<link rel="stylesheet" href="css/styles.css">
<style>
body {
font-family: Monospace;
background-color: #101010;
color: #fff;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<script src="js/libs/lodash.min.js"></script>
<script src="js/libs/three.js"></script>
<script src="js/libs/tween.min.js"></script>
<script src="js/libs/VREffect.js"></script>
<script src="js/libs/VRControls.js"></script>
<script src="dist/mesh-ui.js"></script>
<script src="js/ui/Text.js"></script>
<script src="js/ui/Button.js"></script>
<script src="js/vr.js"></script>
<div id="enter-vr">Enter VR</div>
</body>
</html>