-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (54 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
developed at hackpdx 2015 by:
Justin Zero https://github.com/justinzero
Deron Johnson https://github.com/deronjohnson
Evan Palmer https://github.com/palmerev
Mitch Rivet https://github.com/MitchRivet
Pat Harry https://github.com/PatHarryUX
Ashlin Aronin https://github.com/ashlinaronin
feel free to contribute to the public repo @ https://github.com/hackpdxmusic/musictoy
-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Music Toy</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="main">
<div id="selection-wrap">
<div id="sine-selection-zone"></div>
<div id="square-selection-zone"></div>
<div id="triangle-selection-zone"></div>
</div>
<div id="sequencer-grid">
<div class="sine note note-resting ui-widget-content">
<img src="sine.svg" alt="sine wave"/>
</div>
<div class="square note note-resting ui-widget-content">
<img src="square.svg" alt="square wave"/>
</div>
<div class="triangle note note-resting ui-widget-content">
<img src="triangle.svg" alt="triangle wave" />
</div>
</div>
<div id="time_bar"></div>
<div id="time_square"></div>
<div id="time_bar_vertical"></div>
<div id="instructions">
<h3>Drag shapes into the grid to make music!</h3>
<p><i class="fa fa-arrow-up"></i><i class="fa fa-arrow-down"></i> Pitch</p>
<p><i class="fa fa-arrow-left"></i><i class="fa fa-arrow-right"></i> Time</p>
</div>
</div>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js"></script>
<script src="js/Tone.js"></script>
<script src="js/drag-logic.js"></script>
<script src="js/sequencer.js"></script>
</body>
</html>