-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audio Echo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app" class="app-container">
<h1 class="title">Audio Echo</h1>
<div id="status-message" class="status-message" aria-live="polite">Ready</div>
<div class="slider-container">
<label for="threshold-slider">Threshold: <span id="threshold-value">7%</span></label>
<input type="range" id="threshold-slider" min="0" max="1" step="0.01" value="0.07" class="slider" aria-valuetext="7%">
</div>
<div class="slider-container">
<label for="silence-slider">Silence Duration: <span id="silence-value">1s</span></label>
<input type="range" id="silence-slider" min="500" max="5000" step="100" value="1000" class="slider" aria-valuetext="1.0s">
</div>
<div class="progress-container" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
<div id="noise-level-bar" class="progress-bar"></div>
</div>
<button id="pause-button" class="control-button">Pause</button>
</div>
<script src="script.js"></script>
</body>
</html>