var min = 14;
var max = 25;
var timeleft = Math.floor(Math.random() * (+max - +min)) + +min;
var downloadTimer = setInterval(function () {
document.getElementById("countdown").innerHTML =
timeleft +
" ESPERE LOS SEGUNDOS ✋";
timeleft -= 5;
if (timeleft <= 0) {
clearInterval(downloadTimer);
document.getElementById("countdown").innerHTML =
" ⏬ AHORA PUEDES ENTRAR A LA IMAGEN ⏬";
}
}, 1000);
Comentarios
Publicar un comentario