【发布时间】:2017-10-29 07:37:12
【问题描述】:
我有一个简单的选项卡模板 Ionic 3 应用程序,在该应用程序中,每当用户基于左或右在视图上滑动时,我都会在选项卡之间切换我在选项卡之间切换,并且所有工作正常接受从点击标签或滑动屏幕。
我正在获取页面推送和弹出的动画
this.navCtrl.push(ContactPage, {
animation: true, direction: 'forward'
});
但不适用于选择标签
this.navCtrl.parent.select(2,{
animation: true, direction: 'forward'
});
提前致谢
【问题讨论】:
标签: angular typescript animation ionic2 ionic3