react-scroll-listen
v0.6.2
Published
Notify HOC in react when a scroll happens
Downloads
41
Maintainers
Readme
react-scroll-listen
Install
$ npm install react-scroll-listen --save
Usage
import ScrollListener from 'react-scroll-listen'
render () {
return (
<ScrollListener
onScroll={value => this.setState({scrollPosition: value})}
/>
)
}
API / Props
| Param | Type | args | default | required | |--------------------|---------|--------------|---------------|----------| | onScroll | Function| value, event | | true | | container | ref | | window | false | | element | ref | | document.body | false |
Note: containerToListenOn
and containerToScroll
can be the same but don't have to be
MIT © Jack Hanford