hi ionic i am using ionic 4 and my home page.ts is given bellow
import { Component } from ‘@angular/core’;
@Component({
selector: ‘app-home’,
templateUrl: ‘home.page.html’,
styleUrls: [‘home.page.scss’],
})
export class HomePage {
slideOpts = {
effect: ‘flip’,
autoplay: {
delay: 2000
}
};
}
and home page.html is
<ion-slides loop=“true” pager=“true” [options]=“slideOpts” >
the slide auto play perfect while i go to home on first time but if i change page and go return home the slider auto play not working