-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (57 loc) · 2.66 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="preloader">
<img src="images/spinner.gif">
</div>
<div id="controls">
<div id="sound-sequence-type-select" class="settings-section">
<input type="radio" id="chords" class="sound-sequence-type-btn" name="sound-sequence-type-select" checked>
<label for="chords">Chords</label>
<input type="radio" id="intervals" class="sound-sequence-type-btn" name="sound-sequence-type-select">
<label for="intervals">Intervals</label>
<input type="radio" id="scales" class="sound-sequence-type-btn" name="sound-sequence-type-select">
<label for="scales">Scales</label>
</div>
<div id="chord-inversion-selectors" class="settings-section">
<input type="radio" id="0" class="chord-inversion-select" name="chord-inversion-select" checked>
<label for="0">Root</label>
<input type="radio" id="1" class="chord-inversion-select" name="chord-inversion-select">
<label for="1">1. Inv.</label>
<input type="radio" id="2" class="chord-inversion-select" name="chord-inversion-select">
<label for="2">2. Inv.</label>
<input type="radio" id="3" class="chord-inversion-select" name="chord-inversion-select">
<label for="3">3. Inv.</label>
</div>
<div id="harmony-select" class="settings-section">
<input type="radio" id="ascending" class="harmony-btn" name="harmony-select" checked>
<label for="ascending">Ascending</label>
<input type="radio" id="descending" class="harmony-btn" name="harmony-select">
<label for="descending">Descending</label>
<input type="radio" id="harmonic" class="harmony-btn" name="harmony-select">
<label for="harmonic">Harmonic</label>
</div>
<div id="root-note-select" class="settings-section">
<input type="radio" id="fixed-root-note" class="root-note" name="root-note-select" checked>
<label for="fixed-root-note">Fixed root</label>
<input type="radio" id="random-root-note" class="root-note" name="root-note-select">
<label for="random-root-note">Random root</label>
</div>
<div class="stepper settings-section" title="Miliseconds between notes">
<div class="minus button left">-</div>
<div class="miliseconds">500 m/s</div>
<div class="plus button right">+</div>
</div>
</div>
<div id="sound-sequences">
</div>
<script src='js/jquery-3.2.1.min.js'></script>
<!-- <script src="js/tonal.min.js"></script> -->
<script src="js/main.js"></script>
</body>
</html>