Gestures
http://ionicframework.com/docs/v2/components/#gestures
基本的手势可以通过绑定到tap
,press
,pan
,swipe
,rotate
,pinch
等事件上的HTML元素来使用。
基本用法
<ion-card (tap)="tapEvent($event)">
<ion-item>
Tapped: times
</ion-item>
</ion-card>
http://ionicframework.com/docs/v2/components/#gestures
基本的手势可以通过绑定到tap
,press
,pan
,swipe
,rotate
,pinch
等事件上的HTML元素来使用。
<ion-card (tap)="tapEvent($event)">
<ion-item>
Tapped: times
</ion-item>
</ion-card>