WEBLEB
Startseite
Editor
Anmelden
Pro
Deutsch
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Ein Code von bachir123
1317
bachir123
Im Editor öffnen
Video
Veröffentlichen Sie Ihren Code
0
Empfohlen
21 March 2025
Ein Code von Danis
6 June 2025
Ein Code von alejandrokundrah
29 August 2025
Beispiel für einen CSS-Animationscontainer
HTML
Copy
Document
Switch Mode
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: black; 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) */