WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
luz cambiante
432
mambetov1237.b
Abrir en el editor
Publica tu código
¿Necesitas un sitio web?
Recomendado
21 September 2024
Luz de entrada de contraseña
19 March 2025
Casillas de verificación de sables de luz de Star Wars con CSS3 puro
7 November 2024
alternar con animación de luz
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) */