I use ionic framework for my hybrid mobile app. Default , page transition is slide from left to right for android. I want to cahnge this effect. For example I want to make this effect as slide upto top. How can I change view transition effect on ionic? Thanks in advance...
Asked
Active
Viewed 3,827 times
2 Answers
1
I think its not possible to change the transitions. You can only disable and change the direction... But you can try to change the transition animations with native transitions plugin
Regards Mert

Mert Aksoy
- 372
- 1
- 4
- 12
-
How can you make only change the direction? – AGoranov Feb 13 '20 at 12:31
-
@AGoranov like this: $ionicNativeTransitionsProvider.setDefaultTransition({ type: 'slide', direction: 'left' }); – Mert Aksoy Feb 21 '20 at 17:33
1
There are 3 new transition effects in addition to ususal Slide: Fade, Cube and Coverflow
example: mySlideOptions = { autoplay: 2000, speed:1000, effect: 'Coverflow', };

Manik Biradar
- 1,294
- 2
- 9
- 7