npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-stick-on-scroll

v1.0.2

Published

A React component that animates its position based on scroll progress

Downloads

228

Readme

react-stick-on-scroll

A lightweight, customizable React component that smoothly animates elements based on scroll position. Perfect for creating sticky headers, floating elements, or scroll-triggered animations based on current scroll position

Features

  • 🚀 Smooth scroll-based animations
  • 📦 Lightweight
  • 🔧 Highly customizable
  • 📱 Responsive and works with dynamic content
  • 🎣 Includes a useful useScrollPercentage hook for custom implementations

Installation

npm install react-stick-on-scroll

or

yarn add react-stick-on-scroll

Usage

Basic Example

import { StickOnScroll } from 'react-stick-on-scroll';

function App() {
  return (
    <div>
      <StickOnScroll>
        <header>
          This header will animate down from the top as you scroll
        </header>
      </StickOnScroll>
      
      {/* Your page content */}
    </div>
  );
}

Demo: https://joewatts000.github.io/react-stick-on-scroll

Using the Hook Directly

If you need more control, you can use the useScrollPercentage hook directly:

import { useScrollPercentage } from 'react-stick-on-scroll';

function CustomComponent() {
  const headerRef = useRef(null);
  const [headerHeight, setHeaderHeight] = useState(0);
  
  useEffect(() => {
    if (headerRef.current) {
      setHeaderHeight(headerRef.current.offsetHeight);
    }
  }, []);

  const scrollPercentage = useScrollPercentage(0, headerHeight);
  const currentTop = -headerHeight + (headerHeight * scrollPercentage) / 100;

  return (
    <div
      ref={headerRef}
      style={{
        transform: `translateY(${currentTop}px)`,
        position: 'fixed',
        width: '100%',
        zIndex: 9
      }}
    >
      Custom implementation
    </div>
  );
}

API

StickOnScroll Component

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | scrollTarget| HTMLElement | window | current scrolling element | | startScroll | number | 0 | The scroll position (in pixels) at which the animation begins | | className | string | '' | Additional CSS classes to apply to the wrapper | | children | ReactNode | - | The content to be animated | | zIndex | number | 1 | zindex for the element | | ...props | any | - | Any additional props are passed to the wrapper div |

useScrollPercentage Hook

function useScrollPercentage(scrollTarget: HTMLElement, startScroll: number): number

Returns a number between 0 and 100 representing the scroll progress between startScroll and startScroll + element height at which point the element will be fully in view

Parameters

  • scrollTarget: The element that is currently responsible for scrolling, defaults to window
  • startScroll: The scroll position (in pixels) at which to start calculating the percentage

Return Value

A number between 0 and 100 representing the current scroll percentage.

Demo

Demo link: https://joewatts000.github.io/react-stick-on-scroll

Troubleshooting

Common Issues

  1. Component not animating: Ensure there's enough content on the page to scroll
  2. Incorrect positioning: Check if the parent container has any CSS that might interfere with positioning

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request https://github.com/joewatts000/react-stick-on-scroll