-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwho.html
More file actions
57 lines (44 loc) · 1.87 KB
/
Copy pathwho.html
File metadata and controls
57 lines (44 loc) · 1.87 KB
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
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">
<title>Handwash Hero</title>
<link rel="stylesheet" href="css/styles.css"/>
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/cover/">
<!-- Bootstrap core CSS -->
<link href="./bootstrap-4.0.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./bootstrap-4.0.0/docs/4.0/examples/cover/cover.css" rel="stylesheet">
</head>
<body>
<span style="font-size:100%; color: black; position: absolute; top: 50px"><sup>*</sup>Twirl your index finger in a circular motion for 5 seconds to reset anytime.<sup>*</sup></span>
<script type="text/javascript" src="./js/d3.min.js"></script>
<!-- <script type="text/javascript" src="./js/leap-1.1.0.js"></script> -->
<script type="text/javascript" src="./js/leap-1.0.0.js"></script>
<script type="text/javascript" src="./js/easytimer.min.js"></script>
<div id = "container">
</div>
<div id="box">
<div id="steps"></div>
</div>
<button id='btn'>Skip NOW</button>
<script type="text/javascript" src="./js/fireworks.js"></script>
<script type="text/javascript" src="js/who.js" ></script>
<div id = "output"></div>
<script>
var output = document.getElementById('output');
/* var output = document.getElementById('output');
Leap.loop(function (frame) {
output.innerHTML = 'Frame: ' + frame.id;
for (var h = 0; h < frame.hands.length; h++) {
output.innerHTML += "<br/>" + 'Palm Pos #' + h + ': '+ frame.hands[h].palmPosition;
output.innerHTML += "<br/>" + 'Palm Normal #' + h + ': '+ frame.hands[h].palmNormal;
}
}); */
</script>
</body>
</html>