I want to know how to implement time in my timer. The timer works, but the minutes go from 60, I need 60 minutes to be converted to hours.
<script>
// Tempo em segundos
var credito = 7200 ;
var tempo = credito;
function stopTimer() {
clearTimeout(countdownTimer)
}
function floor(x) {
return x | 0;
}
function pad(n) {
if (n < 0) {
n = -n;
}
if (n < 10) {
return '0' + n.toString();
}
return n.toString();
}
function segundosPassados() {
var minutos = pad(floor(tempo/60));
if (tempo < 0) {
minutos = '-' + minutos;
}
var segundosRestantes = pad(tempo % 60);
document.getElementById('countdown').innerHTML = minutos + ":" +
segundosRestantes;
if (tempo > 0) {
tempo--;
}
}
</script>