Advertisement
Guest User

toggle aa.css night mode

a guest
Mar 22nd, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. First you need to add at body tag this code:
  3.  
  4. <body id="switch">
  5.  
  6. than this pure javascript code:
  7.  
  8. function myFunction(){var element=document.getElementById("switch");element.classList.toggle("night");}
  9.  
  10. than add the switch to toggle between night and day mode with our function:
  11.  
  12. <input onclick="myFunction()" type="checkbox" id="switch2" />
  13. <label class="switchy" for="switch2" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement