ionic 3 image slider stops autoplay after manual sliding

前端 未结 3 456
时光取名叫无心
时光取名叫无心 2021-01-17 15:20

Ionic 3 image slider autoplay works well, but when I slide the image manually the autoplay stops working. Below is my ionic 3 code. I am really stuck here..

         


        
3条回答
  •  天涯浪人
    2021-01-17 16:03

    If someone finds a solution for Ionic 4, to restart the slider after manual sliding just define like this:

    slideOptsOne = {
        initialSlide: 0,
        slidesPerView: 1,
        autoplay: {
          disableOnInteraction: false
        }
      };
    

    HTML:

    
    

    Reference: https://swiperjs.com/api/#autoplay Cheers

提交回复
热议问题