Javascript based library that allow use swipe-touch events on DOM
import 'swipe-touch-events';
or import by hand
document.addEventListener('swiperight', () => {
console.log('swiped right');
});
If you want to use events on specific DOM element:
element.addEventListener('swipedown', () => {
console.log('swiped down');
});