forked from takispig/db-meter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.44 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="script.js" type="text/javascript"></script>
<title>dB Counter</title>
</head>
<body>
<h1>Decibel Meter</h1>
<div class="main-inputs">
<main>
<h2><span id="db">-</span> dB</h2>
<div id='visuals'></div>
</main>
<div class="inputs">
<div class="input">
<label for="offset">Offset value: <span id='offset_value'>-</span> dB</label>
<br>
<input type="range" min="-30" max="30" value="0" class="slider" id="offset">
</div>
<div class="input">
<label for="refresh_rate">Refresh every: <span id='refresh_value'>-</span> ms</label>
<br>
<input type="range" min="100" max="2000" value="500" class="slider" id="refresh_rate">
</div>
</div>
</div>
<footer>
<div class="col">
<p><a href="https://github.com/takispig/db-meter">GitHub Project</a></p>
</div>
<div class="col">
<p><a href="about.html">About</a></p>
</div>
<div class="col">
<p>Last updated: <span id="date">-</span></p>
</div>
</footer>
</body>
</html>