iscroll5上拉一定幅度加载计算留存
Posted 豆瓣匠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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上拉一定幅度加载计算留存的主要内容,如果未能解决你的问题,请参考以下文章