Skip to content

Instantly share code, notes, and snippets.

@Aslam97
Created June 15, 2024 05:06
Show Gist options
  • Save Aslam97/9f3b1964a2feb67c220f44247f8e2a76 to your computer and use it in GitHub Desktop.
Save Aslam97/9f3b1964a2feb67c220f44247f8e2a76 to your computer and use it in GitHub Desktop.
Is on top scroll react shadow
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