WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
luce che cambia
661
mambetov1237.b
Apri nell'Editor
Pubblica il Tuo Codice
Consigliato
6 June 2025
SCHEDA DI CONNESSIONE
16 November 2024
Scheda sfumata HTML
28 March 2025
CodePen Home Delineato Schede mobili
HTML
Copy
Document
press me
CSS
Copy
body { background-color: white; color: black; transition: background-color 0.3s ease, color 0.3s ease; display: flex; align-items: center; justify-content: center; margin: 250px; } body.dark-mode { background-color: blue; color: white; }<!-- Replace with your HTML Code (Leave empty if not needed) -->
JS
Copy
const toggleButton = document.getElementById("theme-toggle"); toggleButton.addEventListener("click", () => { document.body.classList.toggle("dark-mode"); });/* Replace with your JS Code (Leave empty if not needed) */