【发布时间】:2018-03-06 22:58:59
【问题描述】:
我在 Ionic 3 中找不到任何有关 Pan 事件的文档,或者它们是否来自 Cordova 或 Angular 4?
<div class="swipper" #swipper (panleft)="swipe( $event)" (panright)="swipe( $event)" (panend)="swipe( $event) " (panup)="swipe( $event) " (pandown)="swipe( $event) ">
panup 和 pandown 事件不会一直被触发,而且通常非常棘手甚至有问题(在 Chrome 和 iOS 模拟器中测试)。因此,作为一种解决方案,我正在考虑使用 touchstart touchend 事件,这需要重写,但首先我想了解更多关于 pan 事件的信息。
【问题讨论】:
标签: angular cordova typescript ionic3