-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 869 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>soundview</title>
<link rel="icon" href="./favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="./styles/main.css">
</head>
<body>
<div id="overlay">
<div id="overlay-content">
<h1>soundview</h1>
<p>a visual universe for sound</p>
<button id="start-btn">click to start</button>
</div>
</div>
<div id="gain-controls">
<label>sens <input type="range" id="sensitivity" min="-30" max="30" value="-12" step="1"><span id="sensitivity-val">-12</span>dB</label>
<label>speed <input type="range" id="scroll-speed" min="1" max="20" value="8" step="1"><span id="scroll-speed-val">8</span>px</label>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>