rhl9119
rhl9119

Reputation: 1

How to get automatic slides rotation of images in mobile app for updated ionic 3?

How to get automatic slides rotation of images in mobile app for updated ionic 3 ? Previously I was getting image slide rotation but after ionic 3 I'm not getting. Can anyone help ?

Upvotes: 0

Views: 677

Answers (1)

Xavier V.
Xavier V.

Reputation: 6448

To get automatic play in slides, just us the property autoplay on ion-slides element.

Example:

<ion-content>
  <ion-slides autoplay=3000 speed=1000 loop=true effect=slide>
    <ion-slide>
        <!-- Slide 1 -->
    </ion-slide>
    <ion-slide>
        <!-- Slide 2 -->
    </ion-slide>
    <ion-slide>
        <!-- Slide 3 -->
    </ion-slide>
  </ion-slides>
</ion-content>

Upvotes: 1

Related Questions