ionic 手勢事件



#

##向上拖曳。
<button 
	on-drag-up="onDragUp()" 
	class="button">
	Test
</button>
#on-drag-right試試看 »#on-drag-down##向下拖曳。
<button 
	on-drag-down="onDragDown()" 
	class="button">
	Test
</button>
#on-drag-left向左邊拖曳。
<button 
	on-drag-left="onDragLeft()" 
	class="button">
	Test
</button>
#on-swipe指手指滑動效果,可以是任何方向上的。而且也和 on-drag 類似,都有四個方向上單獨的事件。
<button 
	on-swipe="onSwipe()" 
	class="button">
	Test
</button>
#on-swipe-up##向上的手指滑動效果。 試試看»##向右的手指滑動效果。##向下的手指滑動效果。
<button
	on-swipe-down="onSwipeDown()"
	class="button">
	Test
</button>
#on-swipe-left#向左的手指滑動效果。
<button 
	on-swipe-left="onSwipeLeft()"
	class="button">
	Test
</button>
事件描述用法實例
on-hold長按的時間是500毫秒。
<button 
	on-hold="onHold()" 
	class="button">
	Test
	</button>
試試看»
#on-tap這個是手勢輕擊事件,如果長按時間超過250毫秒,那就不是輕擊了。 。
<button 
	on-tap="onTap()" 
	class="button">
	Test
	</button>
試試看»
#on-double-tap手雙擊螢幕事件
<button 
	on-double-tap="onDoubleTap()" 
	class="button">
	Test
	</button>
試試看»
#on-touch這和on-tap 還是有差別的,這個是立即執行,而且是用戶點擊立刻執行。不用等 touchend/mouseup 。
	<button on-touch="onTouch()" 
	class="button">
	Test
	</button>
試試看»
#on-release當使用者結束觸控事件時觸發。
<button 
	on-release="onRelease()" 
	class="button">
	Test
</button>
試試看»
#on-drag這個有點類似PC端的拖拽。當你一直點擊某個物體,手開始移動,都會觸發 on-drag。
<button 
	on-drag="onDrag()" 
	class="button">
	Test
</button>
試試看 »
#on-drag-up試試看 »
##向右拖曳。
<button 
	on-drag-right="onDragRight()" 
	class="button">
	Test
</button>
試試看»
嘗試»
試試看»
<button 
	on-swipe-up="onSwipeUp()" 
	class="button">
	Test
</button>
#on-swipe-right
<button 
	on-swipe-right="onSwipeRight()" 
	class="button">
	Test
</button>
試試看»
#on-swipe-down試試看»
試試看»

#$ionicGesture

一個angular服務展示ionicionic.EventController手勢。

方法

on(eventType, callback, $element)

在一個元素上新增一個事件監聽器。

參數類型詳情eventTypecallback$elementoptions
off(eventType, callback, $element)
string監聽的手勢事件。

function(e)當手勢事件發生時觸發的事件。

element#angular元素監聽的事件。

object物件。

在一個元素上移除一個手勢事件監聽器。

參數類型詳情eventTypecallback$element
string移除監聽的手勢事件。

function(e)移除監聽器。

element#被監聽事件的angular元素。