Oribella
A cross platform, cross browser, cross input gesture building platform with preconfigured gestures such as tap, longtap, doubletap, swipe, longtap-swipe, pinch and rotate.
Getting started
Installation
npm i oribella
Usage
import { oribella, Tap, Swipe } from 'oribella';
oribella.on(Tap, document, { end: () => console.log('tap!') });
oribella.on(Swipe, document, { update: () => console.log('swiping!') });