2

我正在使用没有选项的基本刷卡器。然后我在我的网站正文中有一个“mousemove”监听器。我这样做是为了建立鼠标追随者效果。这很好用,但是当我开始拖动幻灯片时,似乎该事件将不再到达,并且我的自定义 div“用于鼠标效果”不会移动。

4

2 回答 2

3

我终于在api中找到了解决方案!您可以设置touchStartPreventDefault为 false:

this.mySwiper = new Swiper(".swiper-container", {    
    touchStartPreventDefault: false
})

在#Parameters中查找Touches部分

于 2020-02-04T16:12:54.407 回答
0

兄弟经过一整天的测试,这终于奏效了

const slider = new Swiper(e, {
  slidesPerView: 'auto',
  direction: 'horizontal',
  speed: 200,
  loop: true,
  touchStartPreventDefault: false,
  allowTouchMove: true,
})
于 2022-03-02T09:48:07.770 回答