Members
(static, readonly) doubleTap :string
ダブルタップ event
pointerdown→pointermove→pointerupの流れでpointerの移動が上下共にdontSlideDistanceの範囲に収まっており、
doubleTapTimeLimitの時間内に次のpointerdown→pointermove→pointerupが完了した場合に発火する。
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はUIEvent,BrowserEventTranslator.Point
pointerupした時点での生のUIEventと座標
Type:
- Source:
- See:
-
(static, readonly) pointercancel :string
pointercancel event
ブラウザのサポート状況、ユーザが使用する入力デバイスの違いによりeventによりpointercancel/touchcancel eventが発火するが、
それを統一してBrowserEventTranslatorに対して発火する。
MouseEventについては対応していない
Type:
- Source:
- See:
-
- BeautifulProperties.Events
(static, readonly) pointerdown :string
pointerdown event
ブラウザのサポート状況、ユーザが使用する入力デバイスの違いによりeventによりpointerdown/mousedown/touchstart eventが発火するが、
それを統一してBrowserEventTranslatorに対して発火する。
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はUIEvent,BrowserEventTranslator.Pointの配列
pointerdownした際の生のUIEventとその時点でアクティブなpointerの座標
Type:
- Source:
- See:
-
(static, readonly) pointermove :string
pointermove event
ブラウザのサポート状況、ユーザが使用する入力デバイスの違いによりeventによりpointermove/mousemove/touchmove eventが発火するが、
それを統一してBrowserEventTranslatorに対して発火する。
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はUIEvent,BrowserEventTranslator.Pointの配列
pointermoveした際の生のUIEventとその時点でアクティブなpointerの座標
Type:
- Source:
- See:
-
(static, readonly) pointerup :string
pointerup event
ブラウザのサポート状況、ユーザが使用する入力デバイスの違いによりeventによりpointerup/mouseup/touchend eventが発火するが、
それを統一してBrowserEventTranslatorに対して発火する。
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はUIEvent,BrowserEventTranslator.Pointの配列
pointerupした際の生のUIEventとその時点でアクティブなpointerの座標
Type:
- Source:
- See:
-
(static, readonly) swipeDown :string
下swipe event
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はBrowserEventTranslator.Point
pointerupした時点での座標
Type:
- Source:
- See:
-
(static, readonly) swipeLeft :string
左swipe event
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はBrowserEventTranslator.Point
pointerupした時点での座標
Type:
- Source:
- See:
-
(static, readonly) swipeRight :string
右swipe event
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はBrowserEventTranslator.Point
pointerupした時点での座標
Type:
- Source:
- See:
-
(static, readonly) swipeUp :string
上swipe event
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はBrowserEventTranslator.Point
pointerupした時点での座標
Type:
- Source:
- See:
-
(static, readonly) tap :string
タップ event
pointerdown→pointermove→pointerupの流れでpointerの移動が上下共にdontSlideDistanceの範囲に収まっており、
doubleTapTimeLimitの時間内に次のpointerdown→pointermove→pointerupが完了しなかった場合に発火する(fastClickではない)。
BeautifulPropertiesのEvent objectに続くeventHandlerの引数はUIEvent,BrowserEventTranslator.Point
pointerupした時点での生のUIEventと座標
Type:
- Source:
- See:
-