3
I wonder how to implement time on my stopwatch. The timer works, but the minutes pass 60, I need to pass 60 minutes there is a conversion 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>