forked from JGSMoreira/YT-Music-Jam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (37 loc) · 1.05 KB
/
popup.html
File metadata and controls
38 lines (37 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>YTM Jam</title>
<meta charset="utf-8" />
<script src="popup.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="corpo">
<img id="music-cover-back" src="" />
<div id="div-capa">
<div id="container-cover">
<img id="music-cover" class="image" src="" alt="music cover" />
<div class="middle">
<div id="button" role="button"></div>
</div>
</div>
</div>
<div id="div-info">
<span id="music-title">???</span>
<span id="music-artist">???</span>
<progress id="music-time-bar"></progress>
<span id="music-time">???</span>
</div>
</div>
<!-- <div class="queue-item">
<div class="queue-item-main">
<span class="queue-item-title">Nome da música</span>
<span class="queue-item-artist">Artista</span>
</div>
<span class="queue-item-duration">3:00</span>
</div> -->
<!-- <hr /> -->
<div id="div-queue"></div>
</body>
</html>