-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (105 loc) · 3.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEUNGKU SONGS 🎧</title>
<link rel="icon" href="img/logo.ico">
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #ff00bf;
}
.card {
width: 300px;
height: 400px;
border: 1px solid #ffffff;
border-radius: 10px;
overflow: hidden;
background-color: rgba(255, 255, 255, 0.3);
box-shadow: 0 4px 8px rgb(0, 0, 0);
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 15px;
backdrop-filter: blur(10px);
}
.card img {
width: 180px;
height: auto;
border-radius: 10px;
margin-top: 20px;
transition: transform 1s ease;
}
.card img:hover {
transform: scale(1.1);
}
.controls {
display: flex;
justify-content: space-between;
padding: 5px 0;
width: 100%;
margin-top: 10px;
}
.controls button {
background-color: #007BFF;
border: none;
color: #fff;
padding: 10px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: transform 0.2s ease;
}
.controls button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
.controls button:hover {
background-color: #0056b3;
transform: scale(1.05);
}
.song-info {
margin-top: 10px;
font-size: 14px;
text-align: center;
color: #fff;
}
.playlist-selector {
margin-bottom: 10px;
font-size: 14px;
padding: 5px;
border-radius: 5vh;
background-color: #0000004c;
}
</style>
</head>
<body>
<div class="card">
<select id="playlistSelector" class="playlist-selector">
<option value="DJ_Songs">DJ Songs</option>
<option value="INDO_REMIX_Songs">INDO REMIX Songs</option>
<option value="ENGLISH_SONGS">ENGLISH SONGS</option>
</select>
<img src="img/teungku 8bit retro.gif" alt="User Image">
<audio id="audioPlayer">
<source id="audioSource" src="" type="audio/mpeg">
Browser Anda tidak mendukung pemutar audio.
</audio>
<div class="song-info" id="currentSong">No song playing</div>
<div class="controls">
<button id="prevBtn">Prev</button>
<button id="playPauseBtn">Play</button>
<button id="nextBtn">Next</button>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>