slide.js 279 B

123456789
  1. /* Set the width of the side navigation to 250px */
  2. function openNav() {
  3. document.getElementById("mySidenav").style.width = "250px";
  4. }
  5. /* Set the width of the side navigation to 0 */
  6. function closeNav() {
  7. document.getElementById("mySidenav").style.width = "0";
  8. }