-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>AirDrum</title>
<link rel="stylesheet" type="text/css" href="animate.css">
<link rel="stylesheet" type="text/css" href="airdrum.css">
</head>
<body>
<h1>AirDrum</h1>
<br/>
<h3> Option Keyboard Controls: Snare: S, Bassdrum: B, Highhat: H, Crash: C</h3>
<div id='drum-controls'>
<button class='drum-head' id='hh'>Highhat</button>
<button class='drum-head' id='s'>Snare</button>
<button class='drum-head' id='c'>Crash</button>
<br/>
<button class='drum-head' id='k'>Kick</button>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script>z
<script type="text/javascript" src="soundmanager/script/soundmanager2-jsmin.js"></script>
<script src="http://js.leapmotion.com/leap-0.6.3.js"></script>
<script type="text/javascript" src="node_modules/myo/myo.js"></script>
<script type="text/javascript" src="sounds.js"></script>
<script type="text/javascript" src="ps.js"></script>
<script type="text/javascript" src="drum-logix.js"></script>
<script type="text/javascript" src="drum-ui.js"></script>
<script type="text/javascript" src="keypress-2.10.min.js"></script>
<script type="text/javascript" src="leap.js"></script>
<script type="text/javascript">
$(window).resize();
</script>
</body>
</html>