-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.03 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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Audio Visualizer</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div id="visualizer-mount">
<canvas id='visualizer'></canvas>
<div>
<input type="radio" id="wave"
name="analyser-type" value="wave" checked="true">
<label for="wave">Wave</label>
<input type="radio" id="frequency"
name="analyser-type" value="frequency">
<label for="frequency">Frequency</label>
</div>
<div>
<label for="input-check">Input</label>
<input id="input-check" type="checkbox" name="input-check" checked="true"/>
<label for="noise-gate">Noise gate</label>
<input id="noise-gate" type="checkbox" name="noise-gate" checked="true"/>
</div>
</div>
<div class="record-button-wrap">
<input id="record-button" type="checkbox" name="record-button">
<label for="record-button"></label>
</div>
</body>
<script src="scripts/bundle.js"></script>
</html>