My Ionic 3 image slider has autoplay functionality that works perfectly. However, I've noticed that when I manually slide the images, the autoplay feature stops working. I have included my Ionic 3 code below. I would greatly appreciate any help on this issue.
slideData = [{ image: "../../assets/img1.jpg" },{ image: "../../assets/img2.jpg" },{ image: "../../assets/img3.jpg" }]
Here is the corresponding HTML code:
<ion-slides class="slide-css" autoplay="100" loop="true" speed="100" pager="true" autoplayDisableOnInteraction = "false">
<ion-slide *ngFor="let slide of slideData">
<img src="{{slide.image}}" />
</ion-slide>
</ion-slides>