我正在尝试使用iscroll.js为移动设备“拖动以刷新”功能。 它与iscroll.js版本4一起工作正常。但是为了解决IE中的问题,我不得不将插件更新到版本5.
经过几个小时的分析后,我在一些论坛中发现版本4中的“onScrollMove”在版本5中被替换为“scroll”事件。 但是iscroll.js(版本5)插件没有滚动事件。 iscroll5
有人可以帮助我“如何在iScroll5.js中使用onScrollMove事件”吗?
谢谢..
答案 0 :(得分:1)
你应该使用iscroll-probe.js然后你可以得到"滚动"事件
答案 1 :(得分:1)
在this示例中给出。
以这种方式使用iscroll-probe.js:
var myScroll = new IScroll('#wrapper', { probeType: 3, mouseWheel: true });
myScroll.on('scroll', updatePosition);
在updatePosition
函数中添加滚动时要执行的代码。