码迷,mamicode.com
首页 > 其他好文 > 详细

iscroll5上拉一定幅度加载计算留存

时间:2017-06-12 16:19:23      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:start   tde   false   dir   action   text   param   direct   app   

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上拉一定幅度加载计算留存

标签:start   tde   false   dir   action   text   param   direct   app   

原文地址:http://www.cnblogs.com/changlun/p/6993283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!