时间:2021-05-18
Touch.js手势库是专门在Webkit内核浏览器的移动设备中使用中设计的, Touch.js是移动设备上的手势识别与事件库。Touch.js基于原生事件,支持事件代理, 性能更好,极简的API,秒速上手等优势。
1、旋转事件- startRotate
var angle = 0;touch.on('#target', 'touchstart', function(ev){ev.startRotate();ev.preventDefault();});touch.on('#target', 'rotate', function(ev){var totalAngle = angle + ev.rotation;if(ev.fingerStatus === 'end'){angle = angle + ev.rotation;}this.style.webkitTransform = 'rotate(' + totalAngle + 'deg)';});2、双指缩放事件-Scale
var target = document.getElementById("target");target.style.webkitTransition = 'all ease 0.05s';touch.on('#target', 'touchstart', function(ev){ev.preventDefault();});var initialScale = 1;var currentScale;touch.on('#target', 'pinchend', function(ev){currentScale = ev.scale - 1;currentScale = initialScale + currentScale;currentScale = currentScale > 2 ? 2 : currentScale;currentScale = currentScale < 1 ? 1 : currentScale;this.style.webkitTransform = 'scale(' + currentScale + ')';log("当前缩放比例为:" + currentScale + ".");});touch.on('#target', 'pinchend', function(ev){initialScale = currentScale;});3、识别单击, 双击和长按事件-Tap & Hold
touch.on('#target', 'hold tap doubletap', function(ev){//console.log(ev.type);});4、向左, 向右滑动-Swipe
touch.on('#target', 'touchstart', function(ev){ev.preventDefault();});var target = document.getElementById("target");target.style.webkitTransition = 'all ease 0.2s';touch.on(target, 'swiperight', function(ev){this.style.webkitTransform = "translate3d(" + rt + "px,0,0)";log("向右滑动.");});touch.on(target, 'swipeleft', function(ev){log("向左滑动.");this.style.webkitTransform = "translate3d(-" + this.offsetLeft + "px,0,0)";});5、拖拽事件-Drag
touch.on('#target', 'touchstart', function(ev){ev.preventDefault();});var target = document.getElementById("target");var dx, dy;touch.on('#target', 'drag', function(ev){dx = dx || 0;dy = dy || 0;log("当前x值为:" + dx + ", 当前y值为:" + dy +".");var offx = dx + ev.x + "px";var offy = dy + ev.y + "px";this.style.webkitTransform = "translate3d(" + offx + "," + offy + ",0)";});touch.on('#target', 'dragend', function(ev){dx += ev.x;dy += ev.y;});6、原生事件-Touch
touch.on('#target', 'touchstart touchmove touchend', function(ev){console.log(ev.type);});touch.js官方网站:http://touch.code.baidu.com/
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在触屏设备上,一些比较基础的手势都需要通过对touch事件进行二次封装才能实现。zepto是移动端上使用率比较高的一个类库,但是其touch模块模拟出来的一些事
最近在做移动端项目时,需要实现一个列表页面的每一项item向左滑动时出现相应的删除按钮,本来想着直接使用zepto的touch.js插件,因为之前实现相同的功能
本文实例讲述了JS手机端touch事件计算滑动距离的方法。分享给大家供大家参考,具体如下:计算手势在手机屏幕上滑动时,手势滑动的距离,代码如下:function
baguetteBox.js是一个简单和易于使用的响应式的图像Lightbox插件,支持滑动手势在移动设备上使用。纯JavaScript实现,不依赖第三方库和插
一、移动端触摸事件ontouchstart、ontouchmove、ontouchend、ontouchcancel1、Touch事件简介pc上的web页面鼠标