You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
386 B
14 lines
386 B
const toggle = document.getElementById('toggle');
|
|
const menu = document.getElementById('menu');
|
|
|
|
function toggleMenu() {
|
|
menu.classList.toggle('main-nav__list--active');
|
|
this.classList.toggle('main-nav__btn--active');
|
|
this.setAttribute(
|
|
'aria-expanded',
|
|
this.getAttribute('aria-expanded') === 'true' ? 'false' : 'true'
|
|
);
|
|
}
|
|
|
|
toggle.addEventListener('click', toggleMenu, false);
|