-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (53 loc) · 1.49 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
<!doctype html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Arptesselator</title>
<link rel='stylesheet' href='css/styles.css'>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap" rel="stylesheet">
<script src='js/jquery-3.4.1.min.js'></script>
<script src='js/underscore-min.js'></script>
<script src='js/backbone-min.js'></script>
<script src='js/app.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/tone/14.4.84/Tone.js'></script>
</head>
<body>
<div id='app'>
<nav>
<h1>A R P T E S S E L A T O R</h1>
</nav>
<form>
<div class='parameter'>
<select id='keySelect'></select>
<label for='keySelect'>Key</label>
</div>
<div class='parameter'>
<select id='scaleSelect'></select>
<label for='scaleSelect'>Scale</label>
</div>
<div class='parameter'>
<input type='text' name='tempo' id='tempo' size='3'>
<label for='tempo'>Tempo</label>
</div>
<div class='parameter'>
<input type='text' name='steps' id='steps' size='3'>
<label for='steps'>Steps</label>
</div>
<div class='parameter'>
<select id='mungeFreqSelect'>
<option value='0'>0</option>
<option value='0.01'>1</option>
<option value='0.02'>2</option>
<option value='0.03'>3</option>
</select>
<label for='mungeFreqSelect'>Munge</label>
</div>
</form>
<div id='patternGrid'></div>
<button type='button' id='playPauseButton'>Play</button>
<div id='mainText'>
</div>
</div>
</body>
</html>