Created
June 15, 2024 05:06
-
-
Save Aslam97/9f3b1964a2feb67c220f44247f8e2a76 to your computer and use it in GitHub Desktop.
Is on top scroll react shadow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const [isTop, setIsTop] = useState(true) | |
useEffect(() => { | |
const handleScroll = () => { | |
setIsTop(window.scrollY < 100) | |
} | |
window.addEventListener('scroll', handleScroll) | |
return () => { | |
window.removeEventListener('scroll', handleScroll) | |
} | |
}, []) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment