-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
37 lines (30 loc) · 1.3 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
let musica = document.querySelector('audio');
document.querySelector('.circle').addEventListener('click', tocarMusica);
document.querySelector('.none').addEventListener('click', pausarMusica);
musica.addEventListener('timeupdate', atualizarBarra);
function tocarMusica() {
musica.play();
document.querySelector('.none').style.display = 'initial';
document.querySelector('.circle').style.display = 'none';
}
function pausarMusica() {
musica.pause();
document.querySelector('.circle').style.display = 'initial';
document.querySelector('.none').style.display = 'none';
}
function atualizarBarra() {
let barra = document.querySelector('progress');
barra.style.width = (musica.currentTime / musica.duration) * 100 + '%';
let tempoDecorrido = document.querySelector('.inicio');
tempoDecorrido.textContent = segundosParaMinutos(Math.floor(musica.currentTime));
let tempoFinal = document.querySelector('.fim');
tempoFinal.textContent = segundosParaMinutos(Math.floor(musica.duration));
}
function segundosParaMinutos(segundos) {
let campoMinuto = Math.floor(segundos / 60);
let campoSegundos = Math.floor(segundos % 60);
if (campoSegundos < 10) {
campoSegundos = '0' + campoSegundos;
}
return campoMinuto+':'+campoSegundos;
}