-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (35 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<meta property="og:title" content="Human Skeleton Motion Visualizer">
<meta property="og:description" content="A hierarchical model of a human skeleton capable of visualizing motion data built with the JavaScript Processing library p5.js.">
<meta property="og:image" content="https://skeleton.michaelsault.ca/skeletonThumbnail.PNG">
<link rel="stylesheet" type="text/css" href="clicker.css">
<link rel = "stylesheet" type = "text/css" href = "style.css">
<title>Human Skeleton Motion Visualizer</title>
<script src = "./lib/p5/p5.js"></script>
<script src = "script.js"></script>
</head>
<body>
<label for = "motionData">Upload Motion Data File:</label>
<input type = "file" id = "motionData" accept = ".bvh">
<br>
<label for="motionSource">Select A Preset:</label>
<select name="motionSource" id="motionSource" onchange="testFunction(this.value)">
<option disabled selected value> -- select a preset -- </option>
<option value="./motion/2FootJump.bvh">2 Foot Jump</option>
<option value="./motion/CatWalk.bvh">Cat Walk</option>
<option value="./motion/JumpAndRoll.bvh">Jump And Roll</option>
<option value="./motion/JumpRope.bvh">Jump Rope</option>
<option value="./motion/MonkeyVault.bvh">Monkey Vault</option>
<option value="./motion/ParkourRoll.bvh">Parkour Roll</option>
<option value="./motion/SideSkip.bvh">Side Skip</option>
<option value="./motion/SpeedVault.bvh">Speed Vault</option>
<option value="./motion/Stomping.bvh">Stomping</option>
</select>
<button onclick="runAgain()">Play Again!</button>
<div id = "canvascontainer"></div>
</body>
</html>