我正在尝试让Scrollability与Dropkick 插件一起使用。DropKick 声称它适用于可滚动性,但是我无法让它适用于移动滚动。
问问题
928 次
2 回答
1
似乎有一段时间没有更新可滚动性,如果您使用的是 dropkick 和 jquery,这是我必须做的,请在您的 scrollability.js 文件上编辑以下内容:
代替:
require.ready(function() {
document.addEventListener(isTouch ? 'touchstart' : 'mousedown', onTouchStart, false);
window.addEventListener('load', onLoad, false);
});
为了这:
$(document).ready(function(){
document.addEventListener(isTouch ? 'touchstart' : 'mousedown', onTouchStart, false);
window.addEventListener('load', onLoad, false);
});
并注释掉以“export”开头的行。
于 2012-12-04T22:50:51.523 回答
1
也在 github scrollability.js 问题上检查它
https://github.com/joehewitt/scrollability/issues/36 或 https://github.com/joehewitt/scrollability/issues/37
于 2013-01-18T11:29:37.040 回答