-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
87 lines (60 loc) · 2.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Okyp - Gestual Modeling with Leap Motion</title>
<link rel="stylesheet" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<!--
THE CODE IS NOT CLEAN FOR THE MOMENT
-->
</style>
</head>
<body>
<h1>
OKYP
</h1>
<div id="container">
</div>
<div class="closepanel closepaneldisplay">Help</div>
<div class="explications expoff">
<div class="exp">
<img src="img/create.png">
Creation - <em>"Tap" to create point</em></div>
<div class="exp"><img src="img/rotate.png">
Rotation</div>
<div class="exp"> <img src="img/scale.png">
Zoom</div>
</div>
<div class="credits">Design and Development by <a href="http://marcteyssier.com">Marc Teyssier</a></div>
<script type="text/javascript" src="lib/three.js/build/three.js"></script>
<script type="text/javascript" src="lib/leap.min.js"></script>
<script type="text/javascript" src="js/OrbitControls.js"></script>
<script type="text/javascript" src="js/TrackballControls.js"></script>
<script type="text/javascript" src="js/Detector.js"></script>
<script type="text/javascript" src="js/LeapCameraControls.js"></script>
<script src="js/stats.min.js"></script>
<!-- Main js file here -->
<script type="text/javascript" src="js/main.js"></script>
<!-- UI stuff -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
"></script>
<script>
$('.closepanel').click( function() {
$('.explications').toggleClass('expoff');
$('.closepanel').toggleClass('closepaneldisplay');
});
</script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26921492-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$(document).ready(function() {
});</script>
</body>
</html>