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...
});
});