Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | /** * Mobile navigation functionality */ document.addEventListener('DOMContentLoaded', function() { const menuButton = document.getElementById('menu-button'); const overlay = document.getElementById('mobile-nav-overlay'); if (menuButton) { menuButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); document.body.classList.toggle('menu-open'); }); } if (overlay) { overlay.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); document.body.classList.remove('menu-open'); }); } // Close mobile menu when clicking on navigation links const mobileNavLinks = document.querySelectorAll('.mobile-nav-menu a'); mobileNavLinks.forEach(link => { link.addEventListener('click', function() { document.body.classList.remove('menu-open'); }); }); // Close mobile menu on escape key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && document.body.classList.contains('menu-open')) { document.body.classList.remove('menu-open'); } }); }); |