移动端下拉刷新js组件,零依赖,支持ios和Android移动端
npm install ahao-pull-down-refresh
npm i ahao-pull-down-refresh -S
`
用法
`
import pullDownRefresh from 'ahao-pull-down-refresh'
const listDom=document.getElementById("list")
new pullDownRefresh({
el: listDom,
textTop: listDom.offsetTop + 5,
// scrollEl: document.documentElement 是监听滚动到顶部的dom对象,如果过不写一般是document.documentElement
// text:'↓ 下拉可以刷新', 默认
// textEnd:' ↑ 释放立即刷新',默认
// maxDistance:130 默认
callback: () => {
console.log('cb');
}
})
``