jquery-touch 是一款 JQuery 轻量级touch 事件库 , 支持移动端和 pc 端。
(下载的附件中附有DEMO)
$.touch.bind($('.td'), {
start: function(e) {
//console.log('start', e);
},
move: function(e) {
//console.log('move', e);
},
end: function(e) {
console.log('end', e);
},
swipe: function(e) {
if(e.direction == 'left') {
console.log('swipte left', e);
} else if(e.direction == 'right') {
console.log('swipte right', e);
}
}
});
GitHub 地址 :https://github.com/monsterooo/jquery-touch