Show:

GestureBasic Class

基本手势事件。引入模块则可以使用相应事件

使用示例:

require(['node', 'event-dom/gesture/basic'], function($, GestureBasic){
    $(window).on(GestureBasic.START, function(ev){
        //touch start...
    });
    $(window).on(GestureBasic.MOVE, function(ev){
        //touch move...
    });
    $(window).on(GestureBasic.END, function(ev){
        //touch end...
    });
});
  • Index
  • Events

Item Index

Events

Events

END

手势结束事件

MOVE

手势进行事件

START

手势开始事件