Angular ionic left slide automatically switch page dynamic effect how to achieve?

as shown in the figure, how to click on the answer and automatically slide left to switch to the next question. Angular4, is currently used in the project. Can ionic achieve the above dynamic effect?
how to implement

Apr.22,2021

bind a change event to select. When clicked, call push () in NavController to proceed to the next page

   constructor(
    public navCtrl: NavController
   ) {}
   
   public change() {
     this.navCtrl.push(nextPage)
   }

as for animation, it seems that the push () method is left-hand animation by default.

if you want to customize, see NavController

here.

clipboard.png

Menu