-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (67 loc) · 2.01 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/styles/style.css">
<link rel="shortcut icon" href="./assets/icons/favicon.ico" type="image/x-icon">
<title>Playlist Djonga</title>
</head>
<body>
<main class="container__main">
<section class="card-music">
<h2>Tocando agora:</h2>
<div>
<img class="img-msc" src="" alt="Thumb Da Música">
<p class="name-music"></p>
<audio id="audio-main" src=""></audio>
</div>
<div>
<div>
<span id="timeCurrent">00:00</span>
<span id="timeTotal">00:00</span>
</div>
<input id="progress" type="range" min="0" max="0" step="1">
</div>
<section class="control">
<img
class="btn btn_to_back"
src="./assets/icons/anterior.PNG"
alt="Botão De Voltar Música"
>
<img
class="btn btn_play_or_pause"
src="./assets/icons/play.PNG"
alt="Botão de PLay"
>
<img
class="btn btn_to_next"
src="./assets/icons/proxima.PNG"
alt="Botão para ir para a próxima música"
>
</section>
<img
class="img_open_playlist"
src="./assets/icons/open.PNG"
alt="Abrir playlist"
>
<section class="container_playlist">
<div class="container_close">
<img
class="img_close_playlist"
onclick="playlist.hideOrShowPlaylist()"
src="./assets/icons/close.PNG"
alt="Ícone de fechar playlist"
>
</div>
</section>
</section>
<section class="card-sentence">
<p>"Eu sou daqueles que da o papo reto e vive torto" by Djonga</p>
</section>
</main>
<script src="./assets/JS/audio.js"></script>
<script src="./assets/JS/player.js"></script>
<script src="./assets/JS/index.js"></script>
</body>
</html>