DEV Community

Discussion on: Hide NavBar as Scroll down, in less than 10 lines of javascript;

Collapse
 
aleksejs profile image
Aleksejs Aleksejevs

This is because of safari elastic scrolling/bounce effect, you need to be very precise to scroll it to the top.
Just add
if(scrollTop > lastScrollTop && scrollTop > 10)

And it should be fine