WEBLEB
Startseite
Editor
Anmelden
Pro
Deutsch
English
Français
Español
Português
Deutsch
Italiano
हिंदी
wechselndes Licht
660
mambetov1237.b
Im Editor öffnen
Veröffentlichen Sie Ihren Code
Empfohlen
21 June 2025
HTML-Lichteffekt-Container mit CSS
16 July 2025
CSS-Bühne mit Lichterketten und Treppe
29 May 2025
Lichteffekt auf soziales Symbol
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) */