var mobileNav = document.querySelector('.mobile-nav');
document.querySelector('.toggle-button-mobile').addEventListener('click', function(event) {
show = !show;
show ? mobileNav.style.display = 'flex' : mobileNav.style.display = 'none'
})
document.querySelector('.close-button').addEventListener('click', function (event) {
show = false
show ? mobileNav.style.display = 'flex' : mobileNav.style.display = 'none'
})
show ? mobileNav.style.display = 'flex' : mobileNav.style.display = 'none'
Можно ли сделать так чтобы это условие не повторялось, и была какая-то реактивность ?
сделай фиддл и кинь ссылку на него не пиши код в чят
Обсуждают сегодня