slide.js 499 B

12345678910111213
  1. /* Set the width of the side navigation to 250px and the left margin of the page content to 250px */
  2. function toggleNav() {
  3. if (document.getElementById("mySidenav").style.width === "400px"){
  4. document.getElementById("mySidenav").style.width = "0px";
  5. document.getElementById("main").style.marginLeft = "0px";
  6. return;
  7. } else {
  8. document.getElementById("mySidenav").style.width = "400px";
  9. document.getElementById("main").style.marginLeft = "400px";
  10. return;
  11. }
  12. }