如何在 Flexslider 中关闭鼠标滚轮触摸 Ipad

How to turn off mousewheel touching on Ipad in Flexslider

我正在使用 Flexslider ipad 它对鼠标滚轮效果不友好,因为当用户到达这个滑块部分时很难继续 bottom.I 想禁用它 generally.I 试过 Flexslider option.Here 是的,但它不工作 $('.promotions-slider').flexslider({ animation : 'slide', slideshow : false, prevText: "", nextText: "", slideshowSpeed: 2000, mousewheel: false, animationSpeed: 600, controlNav : false, minItems: 1, maxItems: 1 }); 请帮我解决这个问题。

啊终于找到了 solution.Flexslider 还有两个选项 touch 和 useCss。我的最终代码是

$('.promotions-slider').flexslider({
    animation : 'slide',
    slideshow : false,
    prevText: "",
    nextText: "",
    slideshowSpeed: 2000,
    mousewheel: false, 
    animationSpeed: 600,
    touch: false,
    useCSS: false,
    controlNav : false,
    minItems: 1,
    maxItems: 1
});

现在它正在 100% 工作。