【发布时间】:2015-04-14 13:10:22
【问题描述】:
我需要像 jquery.fullPage 一样组织导航:当我滚动一次时 - 我会转到下一部分。
我尝试使用 jquery.mousewheel,但在带有触摸板或触控板或 APPLE 魔术鼠标的 MacOS 中失败:每次滚动它会滚动多张幻灯片。
我尝试使用这个解决方案:https://github.com/jquery/jquery-mousewheel/issues/36#issuecomment-67648897
它在 Chrome 中可以正常工作,但在 FF 中不能,并且在 Safari 中存在错误。
这是问题的简单演示: http://jsfiddle.net/ss5LueLx/13/
$slider.on('mousewheel', function(event) {
if (event.deltaY>0) {
slider.prevSlide();
} else {
slider.nextSlide();
}
});
【问题讨论】:
标签: javascript jquery macos mousewheel