-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (67 loc) · 2.04 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
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<title>Mysteron.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="src/styles/style.css">
<link rel="icon" href="http://monospaced.com/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="amp" class="tracker">✢</div>
<div id="pitch" class="tracker">•</div>
<a id="toggle" href="#_">⚙</a>
<div id="controls">
<form action="./">
<h1>mysteron.js</h1>
<fieldset>
<legend>amplitude</legend>
<label for="ampRate">
rate
<input id="ampRate" type="range" min="1" max="100" value="10">
</label>
<label for="ampOver">
over
<input id="ampOver" type="range" disabled>
</label>
<label for="ampDecay">
decay
<input id="ampDecay" type="range" min="1" max="100" value="40">
</label>
</fieldset>
<fieldset>
<legend>pitch</legend>
<label for="pitchRate">
rate
<input id="pitchRate" type="range" min="1" max="100" value="20">
</label>
<label for="pitchOver">
over
<input id="pitchRate" type="range" disabled>
</label>
</fieldset>
<fieldset id="oscControl">
<legend>osc</legend>
<label for="sine">
<input id="sine" name="osc" type="radio" value="0" checked>
sine
</label>
<label for="square">
<input id="square" name="osc" type="radio" value="1">
square
</label>
<label for="sawtooth">
<input id="sawtooth" name="osc" type="radio" value="2">
saw
</label>
<label for="triangle">
<input id="triangle" name="osc" type="radio" value="3">
triangle
</label>
</fieldset>
</form>
</div>
<script src="src/scripts/lib/move.js"></script>
<script src="src/scripts/script.js"></script>
</body>
</html>