我需要通过拖动(鼠标,手指)来防止滑动,但在使用分页按钮和下一个或上一个按钮时保留它。
以下是我如何初始化它:
var pcSwiper = new Swiper('.swiper-container_pc', {
direction: 'horizontal',
slidesPerView: 'auto',
spaceBetween: 20,
nested: true
});
答案 0 :(得分:0)
我发现disableTouchControl
方法也会禁用鼠标拖动(不仅仅是触摸拖动)。所以,这个方法的名称和描述有点不清楚,但它有效。
pcSwiper.disableTouchControl();