我试图将滑动方向放在两个方向(左右),但无论我做什么滑动,页面总是从右向左弹出。我如何做到这一点,如果我从左向右滑动页面从左侧出现,如果我向右滑动,页面将从右侧出现?
这是我的代码:
page.html:
<ion-content class="home_content" (swipe)="swipe($event)" padding>
</ion-content>
page.ts
swipe(event) {
if(event.direction == '2') {
this.navCtrl.push(Page1);
}
if(event.direction == '4') {
this.navCtrl.push(Page2);
}
}
}
代码工作并推送到两个页面,但它们从同一侧(右侧)出现。