轻量级touch事件库 jquery-touch
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/monsterooo/jquery-touch
- 软件文档: https://github.com/monsterooo/jquery-touch
软件介绍
基于jQuery的轻量级touch事件库
demo: photo-slide
支持移动端和pc端
touchstart
touchmove
touchend
使用方法
$.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);
}
}
});更多请看demo示例
