-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (20 loc) · 922 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
<html>
<head>
<title>Mouse Tracking in Three.js</title>
<style>canvas { width: 100%; height: 100% }</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
</head>
<body>
<div style="float:right;">vectors: <span id="debug"></span></div>
<div id="container"></div>
<!-- make sure this is just below the closing </body> tag -->
<!-- for some reason the latest three.js doesn't work, so we use the one from the example file-->
<script src="js/three.min.js"></script>
<script type="text/javascript" src="js/stats.min.js"></script>
<script type="text/javascript" src="js/Detector.js"></script>
<script src="js/shaders/FresnelShader-ben-reflection.js"></script>
<!--make sure this is last-->
<script src="scene.js"></script>
<div id="container"></div>
</body>
</html>