移动设备手势事件库Touch.js使用详解

前端之家收集整理的这篇文章主要介绍了移动设备手势事件库Touch.js使用详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的JavaScript相关文章