-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<title>Music spot</title>
<link rel="stylesheet" type="text/css" href="piano.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js">
</script>
<script type="text/javascript" src="tone.js"></script>
<script type="text/javascript" src="scales.js"></script>
<script type="text/javascript" src="piano.js"></script>
<script type="text/javascript" src="tableItems.js"></script>
</head>
<body>
<div id="selectDiv">
<select id="scaleBox" name="scaleBox">
<!-- fill this with php/maybe from server? -->
</select>
<button id="play">
Play
</button>
<button id="clear">
Clear
</button>
</div>
<hr>
<div id="upperarea">
</div> <!-- will add header for scale name and provide chords with labels -->
<div id="twoNoteMatching" class="matching">
<span id="twoNoteText" class="text">Two Note Matching Chords</span>
<hr>
<div id="twoNoteSelector"></div>
</div>
<div id="threeNoteMatching" class="matching">
<span id="threeNoteText" class="text">Three Note Matching Chords</span>
<hr>
<div id="threeNoteSelector"></div>
</div>
<select id="keyappearance">
<option>
None
</option>
<option selected="selected">
Pentatonic
</option>
<option>
All
</option>
</select>
<select id="playstyle">
<option>
Lead
</option>
<option selected="selected">
Chord
</option>
</select>
<div id="piano"></div>
<div id="chordArea"></div>
<button id="move-up-one">
<i class="fa fa-arrow-circle-o-up"></i>
</button>
<button id="move-down-one">
<i class="fa fa-arrow-circle-o-down"></i>
</button>
<button id="move-to-top">
<i class="fa fa-arrow-circle-up"></i>
</button>
<button id="move-to-bot">
<i class="fa fa-arrow-circle-down"></i>
</button>
</body>
</html>