
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@lemehovskiy/react-scroller
Advanced tools
React component for detecting vertical scroll progress.
Basic Scroller Basic useScroller Basic parallax background effect Gsap(Greensock) parallax background effect Gsap(Greensock) timeline
React component for detecting vertical scroll progress.
npm i @lemehovskiy/react-scroller
App.tsx
import Scroller from "@lemehovskiy/react-scroller/dist";
export default function App() {
return (
<>
<div style={{ height: "100vh", background: "lightgreen" }}></div>
<Scroller>
{({ scrollProgress }) => (
<div style={{ height: "200px", background: "lightblue" }}>
{scrollProgress}
</div>
)}
</Scroller>
<div style={{ height: "100vh", background: "lightgreen" }}></div>
</>
);
}
App.tsx
import { useRef } from "react";
import { useScroller } from "@lemehovskiy/react-scroller/dist";
export default function App() {
const ref = useRef<HTMLDivElement>(null);
const { scrollProgress } = useScroller({
ref
});
return (
<>
<div style={{ height: "100vh", background: "lightgreen" }}></div>
<div ref={ref} style={{ height: "200px", background: "lightblue" }}>
{scrollProgress}
</div>
<div style={{ height: "100vh", background: "lightgreen" }}></div>
</>
);
}
| name | description | type | default |
|---|---|---|---|
| children | children: (props: { scrollProgress?: number }) => JSX.Element | ||
| debug | Debug flag property | boolean | false |
| scrollTriggerOffset | See useScroller hook API below for more details | ||
| autoAdjustScrollOffset | See useScroller hook API below for more details |
| name | description | type | default |
|---|---|---|---|
| ref | |||
| scrollTriggerOffset | Offset for scroll trigger position. By default, the scroll trigger "start" is placed at the bottom and the trigger "end" at the top. If you want to reduce start offset by 100px you can pass {start: -100, end: 0} or move start offset to the middle of the viewport {start: '-50%', end: 0} | {start: number | string, end: number | string } | {start: 0, end: 0} |
| autoAdjustScrollOffset | Auto-adjusting start and end offset. This option is helpful if the element is first or last and you can't realize the full progress range. You can manually adjust triggers offset but in this case, you can lose responsive behavior. | boolean | false |
FAQs
React component for precise vertical scroll progress detection
The npm package @lemehovskiy/react-scroller receives a total of 2 weekly downloads. As such, @lemehovskiy/react-scroller popularity was classified as not popular.
We found that @lemehovskiy/react-scroller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.