做网站|网站建设,就上易助科技网

前端技术文档及相关资料下载

关于前端html、css、js等技术上的各种疑难棘手问题的解决方案探讨及相关资料下载!

JQuery轻量级touch 事件库 jquery touch
来源:易助科技网浏览量:2收藏

简介

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