slide.js 481 B

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