如何以新页面从右侧而不是从底部进入的方式修改navPush? (应该有一些参数,但我没有在离子文档中找到它们
谢谢!
答案 0 :(得分:7)
您可以通过设置animate
属性来实现。唯一的问题是push
方法只能是动画
{ animate: true, direction: 'forward' }
{ animate: true, direction: 'back' }
您仍然可以使用这样的setRoot()
方法来实现您正在寻找的动画:
this.navCtrl.setRoot(Page1, {}, { animate: true, direction: 'forward' });
请在this page中找到更多信息。