gestuelle
v0.0.2
Published
Gestuelle is a small library that helps you listen to gestures on an element.
Downloads
6
Readme
Gestuelle
Gestuelle is a small library that helps you listen to gestures on an element.
Install
pnpm i gestuelleUsage
import { createGestuelle } from "gestuelle";
// Attach the handler on an element
const element = document.getElementById("my-element");
const instance = createGestuelle(element);
// Remove all listeners
instance.destroy();[!NOTE] Remember to put
touch-action: noneanduser-select: nonestyles on your element to avoid side effects on gesture.
