离子2导航推动 - 从正确的方向

问题描述 投票:6回答:1

如何以新页面从右侧而不是从底部进入的方式修改navPush? (应该有一些参数,但我没有在离子文档中找到它们

谢谢!

angular typescript ionic-framework ionic2 ionic3
1个回答
7
投票

你可以通过设置animate属性来做到这一点。唯一的问题是push方法只能动画

  • 从下到上:{ animate: true, direction: 'forward' }
  • 从上到下:{ animate: true, direction: 'back' }

您仍然可以使用这样的setRoot()方法来实现您正在寻找的动画:

this.navCtrl.setRoot(Page1, {}, { animate: true, direction: 'forward' });

请在this page中找到更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.