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-inview-monitor

v2.3.0

Published

Easy to use for effects when component scrolls into view, f.e. fade-in, autoplay video, etc.

Downloads

1,433

Readme

react-inview-monitor

NPM version MIT License

Easy to use, declarative scroll into view component for animations and more

See the demos for some example usage.

There are other ~ scoll monitor libraries for React available, but none of them solved our use cases: to be able to declaratively configure animations and other effects to be triggered when individual elements came into the view. Inspired by the wow reveal animation library we set out to get to the same ease of use but within react's code paradigm.

Note: this library is not an overly generic, comprehensive, or low-level solution to managing scrolling. If you desire to solve one of the use cases we've had in mind it should be an ease for you to get running. If you need something that doesn't quite fit this solution, or if you just you need more control, consider one of the following libraries:

Usage

IntersectionObserver notes

This library uses IntersectionObserver under the hood.

Support

Until IntersectionObserver is supported in all modern browsers (see support tables) we recommend that you use it together with a polyfill, like the one from the following cdn which only polyfills (downloads code) if necessary: https://cdn.polyfill.io/v2/polyfill.js?features=IntersectionObserver

⚠️ This polyfill currently requires that you set html, body {height: 100%} in your css for it to function correctly.

What not to use this library for

IntersectionObserver uses requestIdleCallback internally, sacrificing low-latency (more direct) pixel accurate updates for performance. This means that there's not guarantee that the in/out of view updates will happen exactly when the element goes in/out of view - they can be delayed until the browser is less busy. For regular usage this is not a problem, but if you need a very high level of accuracy, this library (and IntersectionObserver) is not for you.

Reveal animation when scrolled into view

<InViewMonitor
  classNameNotInView='vis-hidden'
  classNameInView='animated fadeInUp'
>
  <ElementToAnimateIn />
</InViewMonitor>

Note: these classes are not included. We are big fans of animate.css for simple "just add water" animations.

Send custom prop to children when scrolled into view

Can be used for example to auto play a video. Toggle prop saves GPU and battery by stopping the video when no longer in view!

<InViewMonitor
  childPropsInView={{isPlaying: true}}
  toggleChildPropsOnInView={true}
>
  <VideoPlayer />
</InViewMonitor>

See these and more working examples on demo page.

Component properties

| Property | Type | Description :---|:---|:--- | classNameInView | string | common use: add classes to animate in element | | classNameNotInView | string | common use: visually hide element to be animated in. | | classNameAboveView | string | apply class when scrolled past view, f.e. sticky header. | | classNameNotAboveView | string | apply class when not scrolled past view. | | toggleClassNameOnInView | boolean | Toggle between classNameInView/classNameNotInView, instead of just replacing the first time element comes into view and then removing monitoring. default: false | | childPropsInView | object | props propagated to the child element. Can be used to start video, complex animations and more. | | childPropsNotInView | object | default: {} | | toggleChildPropsOnInView | boolean | Toggle between childPropsInView/childPropsNotInView instead of just add childPropsInView the first time element comes into view and then removing monitoring.. default: false | | onInView | function | callback when in view, can be used for tracking. Receives IntersectionObserverEntry as argument. | | onNotInView | function | callback when not in view. Receives IntersectionObserverEntry as argument. | | repeatOnInView | boolean | Repeats callbacks for onInView/onNotInView, rather than firing just the first time. default: false | | intoViewMargin | string - css margin | Margin added to viewport for area to consider “in view”, can be negative. Use f.e. with positive value for lazy loading content just before in view, or with negative to start fading in element just after in view. Must be px or %. Default: ‘-20%’. | | useInviewMonitor | func | Convenient function that can be used to dynamically disable the monitor, for example for mobile devices. | | threshold | number | Value between 0 and 1 which indicate at what percentage of the target's visibility the observer's callback should be executed. default: 0 |

Contributing

Please see the Contribution Guidelines.

Copyright

This component is provided by Snips as Open Source Software. See LICENSE.txt for more information.