如何在具有速度属性的悬停时立即停止滑动滑杆自动播放,而又不花很长时间停止自动播放?

时间:2019-10-28 08:28:14

标签: javascript html web-deployment

当我将速度属性与swiper滑块一起使用时,要花更多时间停止悬停时的swiper自动播放

var SwiperTop = new Swiper('.swiper--top', {
    spaceBetween: 0,
    speed: 10000,
    autoplay: {
        delay: 0.1,
    },
    loop: true,
    slidesPerView:'auto',
    allowTouchMove: false,
    disableOnInteraction: true,
    autoplayDisableOnInteraction: false
});
$(".swiper--top").hover(function() {
    SwiperTop.autoplay.stop();
}, function() {
    SwiperTop.autoplay.start();
});

当我使用speed属性时,swiper滑块出现问题,swiper不会立即停止并且需要更多时间来停止鼠标悬停的自动播放

0 个答案:

没有答案