-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
48 lines (35 loc) · 906 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
38
39
40
41
42
43
44
45
46
47
48
<!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>
#ui-canvas {
}
</style>
</head>
<body>
<div id="container">
<div id="header" class="section">
<h1>mesh ui</h1>
<h3>VR UI components</h3>
</div>
<div id="ui-container" class="section">
<div> <span id="mouse">0,0</span> <span style="float: right" id="intersection"></span> </div>
<div id="ui-canvas"></div>
</div>
<div id="footer">
2016 © ===
</div>
</div>
<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="dist/mesh-ui.js"></script>
<script src="js/ui/Text.js"></script>
<script src="js/ui/Button.js"></script>
<script src="js/ui.js"></script>
</body>
</html>