javascript - A small question about scroll event
phpcn_u1582
phpcn_u1582 2017-07-05 11:00:30
0
2
672
window.addEventListener('scroll',()=>{
        let t = document.documentElement.scrollTop || document.body.scrollTop,
        nav = document.getElementsByClassName('nav')[0];
        t >= nav.offsetTop ? (nav.classList.add('fixed')) : (nav.classList.remove('fixed'));
})

Hello everyone, the above code cannot remove the class name add normally. . . Even if I reverse the order of add and remove, I still can't execute it;
I have been searching for this problem for a long time but cannot solve it, so I would like to ask for your advice. Thank you thank you.

phpcn_u1582
phpcn_u1582

reply all(2)
仅有的幸福

nav.offsetTop is 0 right.

Change t >= nav.offsetTop to t > nav.offsetTop.

Peter_Zhu

1. First, take a look at the output of t and nav.offsetTo to make sure these values ​​are the expected values

2. Make sure your scrolling area is on the body and not on a certain p in the body

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!