touch.js drag, zoom, rotate (mouse gesture) function code
Gesture operations can be implemented: dragging, zooming, and rotating. The encapsulated script method is like this:
var cat = window.cat || {}; cat.touchjs = { left: 0, top: 0, scaleVal: 1, //缩放 rotateVal: 0, //旋转 curStatus: 0, //记录当前手势的状态, 0:拖动, 1:缩放, 2:旋转 //初始化 init: function ($targetObj, callback) { touch.on($targetObj, 'touchstart', function (ev) { cat.touchjs.curStatus = 0; ev.preventDefault();//阻止默认事件 }); if (!window.localStorage.cat_touchjs_data) callback(0, 0, 1, 0); else { var jsonObj = JSON.parse(window.localStorage.cat_touchjs_data); cat.touchjs.left = parseFloat(jsonObj.left), cat.touchjs.top = parseFloat(jsonObj.top), cat.touchjs.scaleVal = parseFloat(jsonObj.scale), cat.touchjs.rotateVal = parseFloat(jsonObj.rotate); callback(cat.touchjs.left, cat.touchjs.top, cat.touchjs.scaleVal, cat.touchjs.rotateVal); } }, //拖动 drag: function ($targetObj, callback) { touch.on($targetObj, 'drag', function (ev) { $targetObj.css("left", cat.touchjs.left + ev.x).css("top", cat.touchjs.top + ev.y); }); touch.on($targetObj, 'dragend', function (ev) { cat.touchjs.left = cat.touchjs.left + ev.x; cat.touchjs.top = cat.touchjs.top + ev.y; callback(cat.touchjs.left, cat.touchjs.top); }); }, //缩放 scale: function ($targetObj, callback) { var initialScale = cat.touchjs.scaleVal || 1; var currentScale; touch.on($targetObj, 'pinch', function (ev) { if (cat.touchjs.curStatus == 2) { return; } cat.touchjs.curStatus = 1; currentScale = ev.scale - 1; currentScale = initialScale + currentScale; cat.touchjs.scaleVal = currentScale; var transformStyle = 'scale(' + cat.touchjs.scaleVal + ') rotate(' + cat.touchjs.rotateVal + 'deg)'; $targetObj.css("transform", transformStyle).css("-webkit-transform", transformStyle); callback(cat.touchjs.scaleVal); }); touch.on($targetObj, 'pinchend', function (ev) { if (cat.touchjs.curStatus == 2) { return; } initialScale = currentScale; cat.touchjs.scaleVal = currentScale; callback(cat.touchjs.scaleVal); }); }, //旋转 rotate: function ($targetObj, callback) { var angle = cat.touchjs.rotateVal || 0; touch.on($targetObj, 'rotate', function (ev) { if (cat.touchjs.curStatus == 1) { return; } cat.touchjs.curStatus = 2; var totalAngle = angle + ev.rotation; if (ev.fingerStatus === 'end') { angle = angle + ev.rotation; } cat.touchjs.rotateVal = totalAngle; var transformStyle = 'scale(' + cat.touchjs.scaleVal + ') rotate(' + cat.touchjs.rotateVal + 'deg)'; $targetObj.css("transform", transformStyle).css("-webkit-transform", transformStyle); $targetObj.attr('data-rotate', cat.touchjs.rotateVal); callback(cat.touchjs.rotateVal); }); } };
html code:
<div style="position:relative;width: 100%;height: 250px;overflow: hidden;border: 1px dashed #ff0000;"> <img id="targetObj" style="position:relative;transform-origin:center" src="http://demo.somethingwhat.com/images/flower1.jpg" /> </div>
js call:
var $targetObj = $('#targetObj'); //初始化设置 cat.touchjs.init($targetObj, function (left, top, scale, rotate) {}; //初始化拖动手势(不需要就注释掉) cat.touchjs.drag($targetObj, function (left, top) { }); //初始化缩放手势(不需要就注释掉) cat.touchjs.scale($targetObj, function (scale) { }); //初始化旋转手势(不需要就注释掉) cat.touchjs.rotate($targetObj, function (rotate) { });
All of the above The following is the touch.js drag, zoom, and rotate (mouse gesture) function code introduced by the editor. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank you all for your support of the PHP Chinese website!
For more touch.js drag, zoom, rotate (mouse gesture) function code related articles, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

The article discusses effective JavaScript debugging using browser developer tools, focusing on setting breakpoints, using the console, and analyzing performance.

The article explains how to use source maps to debug minified JavaScript by mapping it back to the original code. It discusses enabling source maps, setting breakpoints, and using tools like Chrome DevTools and Webpack.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.
