Touch.js手势库是专门在Webkit内核浏览器的移动设备中使用中设计的,Touch.js是移动设备上的手势识别与事件库。Touch.js基于原生事件,支持事件代理,性能更好,极简的API,秒速上手等优势。
1、旋转事件- startRotate
2、双指缩放事件-Scale
2 ? 2 : currentScale;
currentScale = currentScale < 1 ? 1 : currentScale;
this.style.webkitTransform = 'scale(' + currentScale + ')';
log("当前缩放比例为:" + currentScale + ".");
});
touch.on('#target',function(ev){
initialScale = currentScale;
});
3、识别单击,双击和长按事件-Tap & Hold
4、向左,向右滑动-Swipe
5、拖拽事件-Drag
6、原生事件-Touch
touch.js官方网站:nofollow" href="http://touch.code.baidu.com/">http://touch.code.baidu.com/
原文链接:https://www.f2er.com/js/37020.html