You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-scroll-captor

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-scroll-captor

A component that confines scroll events to its immediate child. Great for dropdown menus etc.

1.0.1
latest
Source
npm
Version published
Weekly downloads
494
370.48%
Maintainers
1
Weekly downloads
 
Created
Source

React Scroll Captor

A component that confines scroll events to its immediate child. Great for dropdown menus etc.

Install

yarn add react-scroll-captor

Use

import ScrollCaptor from 'react-scroll-captor';

class GroovyThing extends Component {
  atBottom = () => {
    // user has scrolled to the bottom
  }
  render () {
    return (
      <ScrollCaptor onBottomArrive={this.atBottom}>
        <ScrollableElement />
      </ScrollCaptor>
    );
  }
}

Props

PropertyTypeDefaultDescription
isEnabledbooleantrueEnable or disable the component.
onBottomArrivefunction--Called when the user reaches the bottom of the scrollable element.
onBottomLeavefunction--Called when the user leaves the bottom of the scrollable element.
onTopArrivefunction--Called when the user reaches the top of the scrollable element.
onTopLeavefunction--Called when the user leaves the top of the scrollable element.

Keywords

react

FAQs

Package last updated on 13 Feb 2018

Did you know?

Socket

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.

Install

Related posts