-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (57 loc) · 2.51 KB
/
index.html
File metadata and controls
66 lines (57 loc) · 2.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rainflow - Sound for the Background</title>
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="icon.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="splash-screen">
<img src="splash-image.png" alt="Loading...">
<p>Loading...</p>
</div>
<div class="container" id="main-content" style="display: none;">
<img src="header_small.png" alt="Rainflow" class="header-image">
<!-- Notification -->
<div id="notification" class="notification"></div>
<!-- Audio Selection -->
<div class="audio-selector">
<div class="audio-controls">
<div class="custom-dropdown" id="audio-select-container">
<div class="dropdown-selected" id="dropdown-selected">
<span id="selected-text">Loading...</span>
<span class="dropdown-arrow">▼</span>
</div>
<div class="dropdown-options" id="dropdown-options">
<!-- This will be populated dynamically by JavaScript -->
</div>
</div>
<input type="checkbox" id="favorite-track" class="favorite-checkbox" title="Add this track to your favorites">
<span class="track-heart" title="Favorites Only">❤️</span>
</div>
</div>
<audio id="audio-player" src="audio/light_rain.mp3" preload="metadata" loop></audio>
<div class="controls">
<div class="player-controls">
<button id="prev-btn">⏮️</button>
<button id="play-pause-btn">▶️</button>
<button id="next-btn">⏭️</button>
</div>
</div>
<!-- Volume Control -->
<div class="volume-control">
<input type="range" id="volume-slider" min="0" max="1" step="0.01" value="1" title="Volume Control">
</div>
<!-- Track Information -->
<div class="track-info">
<p id="current-track">Now Playing: <span id="track-title">Unknown</span> - <span id="track-artist">Unknown</span></p>
</div>
<div class="copyright">© 2024 <a href="https://523.life" target="_blank">523.life</a></div>
</div>
<script src="script.js"></script>
</body>
</html>