New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

mtouch

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mtouch

Mobile Touch Library that contain drag/pinch/rotate/singlePinch/singleRotate gesture。

latest
Source
npmnpm
Version
3.0.7
Version published
Maintainers
1
Created
Source

MTouch.js

demo

github

Introduction

中文版

MTouch is a modern JavaScript mobile touch gesture library. It's simple, convenient and only 9k.

The library support 5 kinds of gesture.

  • drag
  • pinch
  • rotate
  • singlePinch
  • singleRotate

Tips:Single finger operation is so useful as practice confirms.

event

all the event you can bind:

EVENT = [
    'touchstart',
    'touchmove',
    'touchend',
    'drag',
    'dragstart',
    'dragend',
    'pinch',
    'pinchstart',
    'pinchend',
    'rotate',
    'rotatestart',
    'rotatend',
    'singlePinch',
    'singlePinchstart',
    'singlePinchend',
    'singleRotate''singleRotatestart',
    'singleRotatend'
];

Installation

  • You can download the latest version from the GitHub;

  • use a npm CDN.

  • or install via npm:

	npm install mtouch --save

Basic usage

let mt = new MTouch(selector);
// bind the drag event;
mt.on('drag',e => {

});

// bind the singlePinch. but there must be a operator that is the element which you want to operate;
mt.on('singlePinch', e =>{

} , operator);

Example

You can operate the element via the ev.delta(incremental motion) in callback's params;

// the global transform to store the state of ele;
let transform = {
    x:0,
    y:0,
    scale:1,
    rotate:0
}

MTouch('selector', ev => {
   transform.x += ev.deltaX;
        transform.y += ev.deltaY;

    $(el).css('transform',
            `translate3d(${transform.x}px,${transform.y}px,0px) scale(${transform.scale}) rotate(${transform.rotate}deg)`);
});

API

1.switch

mtouch.switch(el,addButton);

Switch the operator to change the basepoint that will be used in singlePinch or singleRotate's calculation.

params:

// the element want to operate;
el: type: string or HTMLElement,
	optional;
	default: the el on create the instance;


// whether you want to add a button when use single gesture.
addButton: type: boolean,
			 optional,
			 default:true;

2.on/off

mtouch.on(evName,handle,operator) / mtouch.off(evName,handler);

bind the event callback;

mtouch.on('drag',(ev)=>{
    console.log(ev);
})

the ev of callback is:

ev = {
	origin:TouchEvent,
	eventType:'drag',
	delta:{
		deltaX : 1,
		deltaY : 1,
	}
}

3.destroy

mtouch.destroy();

unbind all the event that has band on el;

Keywords

touch

FAQs

Package last updated on 17 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts