I want to execute this function only when screen is bigger than 1000px.
window.addEventListener(
'scroll',
event => {
const nav = document.querySelector('.module')
if (250 <= window.scrollY) {
nav.classList.add('flyin')
nav.classList.remove('module')
}
else nav.classList.List.add('none')
},
false
)