-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
80 lines (62 loc) · 2.52 KB
/
script.js
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
let musicas = [
{ titulo: 'As It Was', artista: 'Harry Styles', src: 'musicas/Harry Styles - As It Was.mp3', img: 'imagens/capaharry.jpg' },
{ titulo: 'Believer', artista: 'Imagine Dragons', src: 'musicas/Imagine Dragons - Believer.mp3', img: 'imagens/capaimagine.jpg' },
{ titulo: 'Someone You Loved', artista: 'Lewis Capaldi', src: 'musicas/Lewis Capaldi - Someone You Loved.mp3', img: 'imagens/capalewis.jpg' }
];
let musica = document.querySelector('audio');
let indexMusica = 0;
let duracaoMusica = document.querySelector('.fim');
let imagem = document.querySelector('img');
let nomeMusica = document.querySelector('.descricao h2');
let nomeArtista = document.querySelector('.descricao i');
renderizarMusica(indexMusica);
//Eventos
document.querySelector('.botao-play').addEventListener('click', tocarMusica);
document.querySelector('.botao-pause').addEventListener('click', pausarMusica);
musica.addEventListener('timeupdate', atualizarBarra);
document.querySelector('.anterior').addEventListener('click', () => {
indexMusica--;
if (indexMusica < 0) {
indexMusica = 2;
}
renderizarMusica(indexMusica);
});
document.querySelector('.proxima').addEventListener('click', () => {
indexMusica++;
if (indexMusica > 2) {
indexMusica = 0;
}
renderizarMusica(indexMusica);
});
//Funcoes
function renderizarMusica(index) {
musica.setAttribute('src', musicas[index].src);
musica.addEventListener('loadeddata', () => {});
nomeMusica.textContent = musicas[index].titulo;
nomeArtista.textContent = musicas[index].artista;
imagem.src = musicas[index].img;
}
function tocarMusica() {
musica.play();
document.querySelector('.botao-pause').style.display = 'block';
document.querySelector('.botao-play').style.display = 'none';
}
function pausarMusica() {
musica.pause();
document.querySelector('.botao-pause').style.display = 'none';
document.querySelector('.botao-play').style.display = 'block';
}
function atualizarBarra() {
let barra = document.querySelector('progress');
barra.style.width = Math.floor((musica.currentTime / musica.duration) * 100) + '%';
let tempoDecorrido = document.querySelector('.inicio');
tempoDecorrido.textContent = segundosParaMinutos(Math.floor(musica.currentTime));
}
function segundosParaMinutos(segundos) {
let campoMinutos = Math.floor(segundos / 60);
let campoSegundos = segundos % 60;
if (campoSegundos < 10) {
campoSegundos = '0' + campoSegundos;
}
return campoMinutos + ':' + campoSegundos;
}