OFERTA RELÂMPAGO
⚡
– R$ 300,00 ⚡
FRETE GRÁTIS
Ferro de Passar Easy & Care
DE R$ 999,90 POR
R$ 699,90
à vista no pix
ACABA EM
11:33:56
function startCountdown(hours){
let timer = hours * 60 * 60;
setInterval(function(){
let h = Math.floor(timer / 3600); let m = Math.floor((timer % 3600) / 60); let s = timer % 60;
h = h < 10 ? "0"+h : h; m = m < 10 ? "0"+m : m; s = s < 10 ? "0"+s : s; document.getElementById("countdown").innerHTML = h + ":" + m + ":" + s; if(timer > 0){ timer--; }
},1000);
}
startCountdown(12);