-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
42 lines (34 loc) · 1.24 KB
/
main.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
'use strict';
const formatarDigito = (digito) => `0${digito}`.slice(-2);
const atualizar = (tempo) => {
const segundos = document.getElementById('segundos');
const minutos = document.getElementById('minutos');
const horas = document.getElementById('horas');
const dias = document.getElementById('dias');
const qtdSegundos = tempo % 60;
const qtdMinutos = Math.floor((tempo % (60 * 60)) / 60);
const qtdHoras = Math.floor((tempo % (60 * 60 * 24)) / (60 * 60));
const qtdDias = Math.floor(tempo / (60 * 60 * 24));
segundos.textContent = formatarDigito(qtdSegundos);
minutos.textContent = formatarDigito(qtdMinutos);
horas.textContent = formatarDigito(qtdHoras);
dias.textContent = formatarDigito(qtdDias);
}
const contagemRegressiva = (tempo) => {
const pararContagem = () => clearInterval(id);
const contar = () => {
if (tempo === 0 ){
pararContagem();
}
atualizar (tempo);
tempo--;
}
const id = setInterval(contar,1000);
}
const tempoRestante = () => {
// 1 de janeiro de 1970
const dataEvento = new Date ('2022-05-28 10:00:00');
const hoje = Date.now();
return Math.floor((dataEvento - hoje) / 1000);
}
contagemRegressiva(tempoRestante());