-
Notifications
You must be signed in to change notification settings - Fork 0
/
play.html
59 lines (51 loc) · 1.51 KB
/
play.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
<!DOCTYPE html>
<html>
<head>
<title>Avril's Music Player</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Fgroove.png?v=1585705272817"
id="background"
/>
<audio
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Ftellme.mp3?v=1585705284127"
id="song"
></audio>
<div class="container">
<div class="song-title"> Groove Theory <br> Tell Me </div>
<div class="box"></div>
<img
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Fgroove.png?v=1585705272817"
id="thumbnail"
/>
<img
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Fplay.png?v=1585684219629"
onclick="playPause()"
id="play-pause"
/>
<img
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Fnext.png?v=1585684230941"
onclick="nextSong()"
id="next-song"
/>
<img
src="https://cdn.glitch.com/8d90fb7c-d365-4065-9b8c-17b1b25ec8fc%2Fprevious.png?v=1585684214094"
onclick="previousSong()"
id="previous-song"
/>
<input
type="range"
id="progress-bar"
min="0"
max=" "
value="0"
onchange="changeProgressBar()"
/>
<div class="currentTime"></div>
<div class="durationTime"></div>
</div>
<script src="script.js"></script>
</body>
</html>