Friday, 02 June 2017 13:47 |
There are no translations available.
Dans une application Ionic, on a parfois besoin de modifier ou désactiver les transitions par défaut entre les pages.
angular.module('YOUR_APP_NAME_HERE').config(function($ionicConfigProvider) {
$ionicConfigProvider.views.transition('none');
});
- platform: Dynamically choose the correct transition style depending on the platform the app is running from. If the platform is not ios or android then it will default to ios.
- ios: iOS style transition.
- android: Android style transition.
- none: Do not perform animated transitions.
|