Manzano 0432 751057 - Cormons 0481 62484
Test a Schermate Sequenziali

Benvenuto al Test!

Scopri di più rispondendo a poche semplici domande.

Benvenuto al Test!

Scopri di più rispondendo a poche semplici domande.

let currentScreenIndex = 0; // ID delle schermate in ordine const screens = [ "welcome-screen", "question-1", "question-2", "question-3", "final-screen", ]; // Funzione per andare alla schermata successiva function nextScreen() { if (currentScreenIndex < screens.length - 1) { document.getElementById(screens[currentScreenIndex]).classList.remove("active"); currentScreenIndex++; document.getElementById(screens[currentScreenIndex]).classList.add("active"); } } // Funzione per gestire le risposte function handleAnswer(answer) { console.log(`Risposta selezionata: ${answer}`); nextScreen(); } // Mostra la schermata iniziale document.addEventListener("DOMContentLoaded", () = > { document.getElementById(screens[0]).classList.add("active"); });