0.2.0 ⢠Published 7 years ago
react-scroll-handler v0.2.0
react-scroll-handler
ā Scroll events handling with React
Just made for my needs, feel free to improve it.
Installation
npm install react-scroll-handler
Usage
See examples below:
Props
Property | Type | Description |
---|---|---|
onTop | (ScrollPosition) => void | Triggers when scroll is to top |
onBottom | (ScrollPosition) => void | Triggers when scroll is to bottom |
onUp | (ScrollPosition) => void | Triggers when scroll goes up |
onDown | (ScrollPosition) => void | Triggers when scroll goes down |
topOffset | number | Defines top offset |
bottomOffset | number | Defines bottom offset |
ScrollPosition
:
scrollTop
: numberisTop
: booleanisBottom
: booleanisUp
: booleanisDown
: boolean