-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
61 lines (53 loc) · 1.85 KB
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
<html>
<head>
<title>jsEQ</title>
<link type="text/css" href="css/stylez.css" rel="stylesheet" />
</head>
<body>
<div id="player">
<div id="audio"></div>
<canvas id="canvas"></canvas>
</div>
<div class="demo-box">
<button id="button-start" disabled>START</button>
<!-- <button id="init" onClick="init()">Start</button></p> -->
<legend>Rounding options:</legend>
<div>
<input type="radio" id="roundingNone" name="rounding" value="none">
<label for="roundingNone">No rounding</label>
<br>
<input type="radio" id="roundingMedium" name="rounding" value="hz" checked>
<label for="roundingMedium">Round to nearest Hz</label>
<br>
<input type="radio" id="roundingHard" name="rounding" value="note">
<label for="roundingHard">Round to nearest note</label>
<br>
</div>
<br>
<legend>Smoothing options:</legend>
<div>
<input type="radio" id="smoothingNone" name="smoothing" value="none">
<label for="smoothingNone">No smoothing</label>
<br>
<input type="radio" id="smoothingMedium" name="smoothing" value="basic" checked>
<label for="smoothingMedium">Basic smoothing</label>
<br>
<input type="radio" id="smoothingHard" name="smoothing" value="very">
<label for="smoothingHard">Very smoothed (note must be more consistent and held for longer)</label>
<br>
</div>
<br>
<legend>Display (click Start after you switch):</legend>
<div>
<input type="radio" id="displaySine" name="display" value="sine" checked>
<label for="displaySine">Sine wave</label>
<br>
<input type="radio" id="displayFrequency" name="display" value="frequency">
<label for="displayFrequency">Frequency</label>
<br>
</div>
<p id="note"></p>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>