Advertisement
Udoro

Pro menu to accordion on mobile - JS

Jun 11th, 2022 (edited)
696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.addEventListener('DOMContentLoaded', () => {
  2.  
  3. const proMenu = document.querySelector('#footer .oxy-pro-menu'),
  4.       menuContainer = document.querySelector('#footer .oxy-pro-menu-container')
  5.  
  6.  
  7. function checkForWindowResize() {
  8.     clearTimeout(window.resizedFinished);
  9.  
  10.     window.resizedFinished = setTimeout(function(){
  11.         if (window.innerWidth < 768) {
  12.        
  13.                 proMenu.classList.add('oxy-pro-menu-open')         
  14.                 menuContainer.classList.add('oxy-pro-menu-open-container')         
  15.  
  16.  
  17.         } else {
  18.            
  19.                 proMenu.classList.remove('oxy-pro-menu-open')          
  20.                 menuContainer.classList.remove('oxy-pro-menu-open-container')
  21.            
  22.         }
  23.  
  24.     }, 0);
  25. }
  26.  
  27. checkForWindowResize();
  28. window.addEventListener('resize', checkForWindowResize);
  29.    
  30. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement