-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (34 loc) · 961 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·34 lines (34 loc) · 961 Bytes
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
<doctype html>
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="drop-zone">
<i class="glyphicon glyphicon-music"></i>
Drop tunes here
</div>
<div id="beat-ball" class="vert">
<div class="real"></div>
<div class="both"></div>
<div class="imag"></div>
</div>
<div id="clock" class="vert">
<div class="back"></div>
<div class="hand"></div>
<div>
<p class="bpm"></p>
<p class="time-signature"></p>
</div>
</div>
<div id="waveform">
<canvas width="1024" height="512"></canvas>
</div>
<div id="frequencies">
<canvas width="1024" height="512"></canvas>
</div>
</body>
</html>