@zhuweiyou/reach-bottom
v1.0.0
Published
reach bottom
Downloads
2
Readme
@zhuweiyou/reach-bottom
reach bottom
npm install @zhuweiyou/reach-bottom
import { onReachBottom, onReachBottomContainer } from "@zhuweiyou/reach-bottom"
// body
onReachBottom(() => {
console.log("on reach bottom")
}, 50)
// container
onReachBottomContainer(
"#parent-element", // or Element instance
() => {
console.log("on reach bottom")
},
50
)