Para transformar segundos em tempo formatado(hh:mm:ss) em javascritp utilize a função abaixo:
function sec_to_time(segundos) {
d = Number(segundos);
var h = Math.floor(d / 3600);
var m = Math.floor(d % 3600 / 60);
var s = Math.floor(d % 3600 % 60);
return ((h > 0 ? h + ":" + (m < 10 ? "0" : "") : "") + m + ":" + (s < 10 ? "0" : "") + s);
}
chame a função como o alert abaixo:
alet(sec_to_time(6000)); //resultado 1:40:00
Nenhum comentário:
Postar um comentário