mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
26 lines
No EOL
657 B
TypeScript
26 lines
No EOL
657 B
TypeScript
import { useEffect, useState } from "react";
|
|
|
|
export function useScrollPosition() {
|
|
const [scrollPosition, setScrollPosition] = useState(0);
|
|
|
|
function handleScroll() {
|
|
const height =
|
|
document.documentElement.scrollHeight -
|
|
document.documentElement.clientHeight;
|
|
|
|
const windowScroll = document.documentElement.scrollTop;
|
|
|
|
const scrolled = (windowScroll / height) * 100;
|
|
|
|
setScrollPosition(scrolled);
|
|
}
|
|
|
|
useEffect(() => {
|
|
window.addEventListener("scroll", handleScroll, { passive: true });
|
|
return () => {
|
|
window.removeEventListener("scroll", handleScroll);
|
|
};
|
|
});
|
|
|
|
return Math.floor(scrollPosition);
|
|
} |