-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AHX worklet</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div id="app">
<canvas id="visualizer" width="640" height="96"></canvas>
<h1>AHX worklet</h1>
<div class="controls">
<button id="play" class="btn-icon" type="button"></button>
<div class="position flex-col flex-fill">
<label for="position">-</label>
<input id="position" type="range" min="0.0" max="1.0" step="0.01" value="0" />
</div>
<div class="volume flex-col">
<label for="volume">100%</label>
<input id="volume" type="range" min="0.0" max="1.0" step="0.01" value="1.0" />
</div>
</div>
<div class="list" id="songlist"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>