DEV Community

Discussion on: sticky navbar on scroll reactJS

Collapse
 
gabrielmlinassi profile image
Gabriel Linassi

Thanks! I created a version for functional components:

const [show, setShow] = useState(false);

useEffect(() => {
window.addEventListener("scroll", handleScroll);
return () => window.removeEventListener("scroll", handleScroll);
}, []);

const handleScroll = () => {
setShow(window.pageYOffset > 140);
};

Collapse
 
abodmicheal profile image
Abod Micheal (he/him)

nice thanks for that I'll add and give credit , working on a library for it