首页 > 代码库 > iscroll5上拉一定幅度加载计算留存
iscroll5上拉一定幅度加载计算留存
new IScroll(‘#‘ + parameter.id, { preventDefault: false, preventDefaultException: {tagName: /^(INPUT|TEXTAREA|BUTTON|SELECT|H1|H2|DIV|A|IMG)$/}, useTransition: true, vScrollbar: false, topOffset: 0, probeType: 2, deceleration: 0.006 }); " + parameter.id + ".on(‘scrollStart‘, function () { minY = this.y; }); " + parameter.id + ".on(‘scroll‘, function () { minY = minY < this.y ? minY : this.y; }); " + parameter.id + ".on(‘scrollEnd‘, function () { minY = minY < this.y ? minY : this.y; if (this.y - minY > 10 && (this.directionY === 1)) { refresher.onPulling(pullUpEl, parameter.pullUpAction); } });
//this.scrollerHeight 页面内容整体高度
//this.y 页面已经滚动过去的距离
//this.wrapper.clientHeight 当前屏幕高度
iscroll5上拉一定幅度加载计算留存
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。