joyfulljs / xtouch

unify the touch and mouse event so you can handle the mouse event the `touch` way.

Home Page:https://joyfulljs.github.io/draggable/demo/#xtouch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xtouch

With XTouch, you only need to handle touch event only, it will just works fine on both touch device and mouse device or device that support both.

useage

import XTouch from "@joyfulljs/xtouch";

function onStart(e){};
function onMove(e){};
function onEnd(e){};

const capture = false; // { passive: false }
const unbind = XTouch(div, { onStart, onMove, onEnd, capture });

// unbind();

api

docs

license

MIT@elvinzhu

About

unify the touch and mouse event so you can handle the mouse event the `touch` way.

https://joyfulljs.github.io/draggable/demo/#xtouch


Languages

Language:TypeScript 100.0%