0.0.12 • Published 7 months ago

@lemehovskiy/react-scroller v0.0.12

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

Status GitHub Issues GitHub Pull Requests License


Demo

Basic Scroller

Basic useScroller

Basic parallax background effect

Gsap(Greensock) parallax background effect

Gsap(Greensock) timeline

🧐 Features

  • Vertical Scroll Progress Tracking: Easily monitor scroll progress in your React components for engaging user experiences.
  • Custom Start and End Offsets: Define precise scroll triggers for your components, enhancing user interactions.
  • Auto-Adjust Offsets: Ensure seamless tracking even in limited space scenarios, making your components responsive.
  • Debug Mode: Debug with ease using the built-in visualizer for triggers.

🏁 Getting Started

Installing

npm i @lemehovskiy/react-scroller

Scroller example

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>
    </>
  );
}

useScroller hook example

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>
    </>
  );
}

Scroller API

namedescriptiontypedefault
childrenchildren: (props: { scrollProgress?: number }) => JSX.Element
debugDebug flag propertybooleanfalse
scrollTriggerOffsetSee useScroller hook API below for more details
autoAdjustScrollOffsetSee useScroller hook API below for more details

useScroller hook API

namedescriptiontypedefault
ref
scrollTriggerOffsetOffset 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 the start offset by 100px you can pass {start: -100, end: 0} or move the start offset to the middle of the viewport {start: '-50%', end: 0}{start: number | string, end: number | string }{start: 0, end: 0}
autoAdjustScrollOffsetAuto-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.booleanfalse
0.0.10

7 months ago

0.0.11

7 months ago

0.0.12

7 months ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago