amaze iscroll的demo中 y 跟 pullStart 到底是什么意思
myScroll.on('scrollStart', function() {
if (this.y >= topOffset) {
pullFormTop = true;
}
pullStart = this.y;
// console.log(this);
});
myScroll.on('scrollEnd', function() {
if (pullFormTop && this.directionY === -1) {
_this.handlePullDown();
}
pullFormTop = false;
// pull up to load more
if (pullStart === this.y && (this.directionY === 1)) {
alert(this.y +"#3#3#" + pullStart);
_this.handlePullUp();
}
});
为什么 我滑到最低端的时候他们始终相等 而我往上滑的时候两个又不等了
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论