Код: Выделить всё
...
...
/* CSS */
@media screen and (max-width: 900px) {
.menu-hamburger { display: block; }
}
// JavaScript
const menuToggle = document.getElementById('menu-toggle');
const navLinks = document.querySelector('.nav-links');
menuToggle.addEventListener('click', () => {
navLinks.classList.toggle('mobile-menu');
});
https://github.com/bytebanditbot/dropdownmenu.git
Подробнее здесь: https://stackoverflow.com/questions/795 ... elow-900px
Мобильная версия