forked from j0hnm4r5/IDeATePhysCompProject03-Cardboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 885 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
<!DOCTYPE html>
<html>
<head>
<title>PhysComp Project03 — Cardboard</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="container"></div>
<script src="js/threejs/three.js"></script>
<script src="js/threejs/StereoEffect.js"></script>
<script src="js/threejs/DeviceOrientationControls.js"></script>
<script src="js/threejs/OrbitControls.js"></script>
<script src="js/threejs/MTLLoader.js"></script>
<script src="js/threejs/OBJLoader.js"></script>
<script src="js/threejs/OBJMTLLoader.js"></script>
<script src="js/threejs/tween.min.js"></script>
<script src="js/threejs/stats.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>