-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.19 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Boats 3D constructor</title>
<meta 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="styles.css">
</head>
<body>
<div id="container"></div>
<div id="sidebar">
<ul>
<li>
<label>
<span>Second boat</span>
<input type="checkbox" />
</label>
</li>
</ul>
</div>
<script src="libs/lodash.js"></script>
<script src="libs/jquery-2.1.3.min.js"></script>
<script src="libs/threejs/three.min.js"></script>
<script src="libs/threejs/Detector.js"></script>
<script src="libs/threejs/MTLLoader.js"></script>
<script src="libs/threejs/OBJLoader.js"></script>
<script src="libs/threejs/OBJMTLLoader.js"></script>
<script src="libs/threejs/OrbitControls.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/sidebar.js"></script>
</body>
</html>