El enlace se desbloqueará automáticamente después de esperar el tiempo indicado.
const overlay = document.getElementById("overlay");
const adButton = document.getElementById("adButton");
const continueButton = document.getElementById("continueButton");
const countdownElement = document.getElementById("countdown");
const adFrame = document.getElementById("adFrame");
// Función para abrir el anuncio en el iframe y activar la cuenta regresiva
function openAd() {
adFrame.src = adsterraLink; // Carga el anuncio en el iframe
adFrame.style.display = "block"; // Muestra el iframe
adButton.style.display = "none"; // Oculta el botón de abrir anuncio
// Tiempo de espera en segundos
let countdown = 10;
// Iniciar cuenta regresiva
const countdownInterval = setInterval(() => {
countdown--;
countdownElement.textContent = countdown;
if (countdown === 0) {
clearInterval(countdownInterval);
// Mostrar el botón de continuar
continueButton.style.display = "inline-block";
}
}, 1000); // Reduce en 1 segundo
}