-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (41 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Amigo Visualizer</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<canvas id="canvas"></canvas>
<div id="divCommands">
<span id="spanOpenFiles">
<table>
<tr>
<td>Points :</td>
<td><input type="file" id="csvPath" /></td>
</tr>
<tr>
<td>Skeleton :</td>
<td><input type="file" id="skePath" /></td>
</tr>
</table>
</span>
<span id="spanButtons">
<button id="playBtn"></button>
</span>
<span id="spanSlider">
<input type="range" id="progressBar" min="1" value="1" />
</span>
<span id="spanNumber">
Speed :<br>
<input type="number" id="stepNumber" value="1" min="1" max="5">
</span>
</div>
<script src="js/lib/jquery-3.2.1.slim.min.js"></script> <!-- jQuery -->
<script src="js/lib/three.js"></script> <!-- Three.js library -->
<script src="js/lib/OrbitControls.js"></script> <!-- Orbiter Controls -->
<script src="js/lib/Detector.js"></script> <!-- WebGL Detector -->
<script src="js/parameters.js"></script> <!-- Customize here -->
<script src="js/init.js"></script>
</body>
</html>