-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (61 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Audio</title>
<link href="styles/style.css" rel="stylesheet"/>
</head>
<body>
<h1>FrontMixer</h1>
<form>
<div class="mixer">
<section class="mixer-channel">
<h1>Channel 1</h1>
<div>
<label for="low-band-left">Low</label>
<input id="low-band-left" max="40" min="-40" step="1" type="range" value="0"/>
</div>
<div>
<label for="high-band-left">High</label>
<input id="high-band-left" max="40" min="-40" step="1" type="range" value="0"/>
</div>
<div>
<label for="volume-fader-left">Volume</label>
<div class="fader-wrapper">
<input id="volume-fader-left" class="fader-vertical" max="100" min="0" step="1" type="range" value="100"/>
</div>
</div>
<button id="play-left" class="control-button">Play</button>
<button id="stop-left" class="control-button">Stop</button>
</section>
<section class="mixer-channel">
<h1>Channel 2</h1>
<div>
<label for="low-band-right">Low</label>
<input id="low-band-right" max="40" min="-40" step="1" type="range" value="0"/>
</div>
<div>
<label for="high-band-right">High</label>
<input id="high-band-right" max="40" min="-40" step="1" type="range" value="0"/>
</div>
<div>
<label for="volume-fader-right">Volume</label>
<div class="fader-wrapper">
<input id="volume-fader-right" class="fader-vertical" max="100" min="0" step="1" type="range" value="100"/>
</div>
</div>
<button id="play-right" class="control-button">Play</button>
<button id="stop-right" class="control-button">Stop</button>
</section>
<div>
<label for="distortion">Distortion</label>
<input id="distortion" max="100" min="0" step="1" type="range" value="0"/>
</div>
</div>
</form>
<script src="http://cdn.binaryjs.com/0/binary.js"></script>
<script src="scripts/script.js"></script>
<script src="scripts/front-mixer.js"></script>
<script src="scripts/equalizer.js"></script>
</body>
</html>