Window Scroll simple

PHOTO EMBED

Fri May 19 2023 18:04:22 GMT+0000 (Coordinated Universal Time)

Saved by @rstringa #hooks #scroll

const [scroll, setScroll] = useState(false);
 useEffect(() => {
   window.addEventListener("scroll", () => {
     setScroll(window.scrollY > 50);
   });
 }, []);


className={scroll ? "bg-black" : "bg-white"}
content_copyCOPY