-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.94 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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline Ambient Sounds Mixer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<button id="meanderToggle">Toggle Meander</button> <!-- Meander toggle button -->
<div id="soundControls">
<div class="sound1">
<button class="playButton">Play Sound 1</button>
<input type="range" class="volumeSlider" min="0" max="1" step="0.01" value="0.5">
<div class="statusIndicator"></div> <!-- Status indicator -->
<audio src="sounds/sound1.mp3" loop></audio>
</div>
<div class="sound2">
<button class="playButton">Play Sound 2</button>
<input type="range" class="volumeSlider" min="0" max="1" step="0.01" value="0.5">
<div class="statusIndicator"></div> <!-- Status indicator -->
<audio src="sounds/sound1.mp3" loop></audio>
</div>
<div class="sound3">
<button class="playButton">Play Sound 3</button>
<input type="range" class="volumeSlider" min="0" max="1" step="0.01" value="0.5">
<div class="statusIndicator"></div> <!-- Status indicator -->
<audio src="sounds/sound1.mp3" loop></audio>
</div>
<div class="sound4">
<button class="playButton">Play Sound 4</button>
<input type="range" class="volumeSlider" min="0" max="1" step="0.01" value="0.5">
<div class="statusIndicator"></div> <!-- Status indicator -->
<audio src="sounds/sound1.mp3" loop></audio>
</div>
<div class="sound5">
<button class="playButton">Play Sound 5</button>
<input type="range" class="volumeSlider" min="0" max="1" step="0.01" value="0.5">
<div class="statusIndicator"></div> <!-- Status indicator -->
<audio src="sounds/sound1.mp3" loop></audio>
</div>
<!-- Repeat for other sounds -->
</div>
<script src="js/script.js"></script>
</body>
</html>