-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="test/style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Luniau BETA</title>
</head>
<body>
<div class="container">
<p>BETA</p>
<a href="https://github.com/LeBazarDeBryan/Luniau#readme">
<img src="" id="banner" alt="Luniau">
</a>
<script type="text/javascript">
var images = ['banner/IMG_01.png', 'banner/IMG_02.png', 'banner/IMG_03.png', 'banner/IMG_04.png', 'banner/IMG_05.png', 'banner/IMG_06.png', 'banner/IMG_07.png', 'banner/IMG_08.png', 'banner/IMG_09.png'];
document.getElementById('banner').src = images[Math.floor(Math.random() * images.length)];
</script>
<input type="text" id="search-box" placeholder="Search for music...">
<ul id="file-list"></ul>
</div>
<div class="panel-right hidden">
<button id="info-btn">Info</button>
<button id="lyrics-btn">Lyrics</button>
<button id="about-btn">About</button>
<button id="settings-btn">Settings</button>
</div>
<button class="toggle-panel-btn">☰</button>
<div class="audio-container">
<div class="audio-controls">
<button id="prev-btn">◀◀</button>
<button id="play-btn">▶</button>
<button id="pause-btn" style="display: none;">❚❚</button>
<button id="next-btn">▶▶</button>
</div>
<div class="timer-container">
<span class="current-time" id="current-time">00:00</span>
<span class="duration" id="duration">00:00</span>
</div>
<div class="progress-container" id="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<img id="modal-cover" src="" alt="">
<h2 id="modal-title"></h2>
<div id="modal-content"></div>
</div>
</div>
<div id="settings-panel" class="settings-panel">
<span class="close">❌</span>
<h2>Settings</h2>
<label><input type="checkbox" id="partyMode">Party Mode</label>
</div>
<script src="test/script.js"></script>
<div id="spacer" style="height: 80px;"></div>
</body>
</html>