Skip to content

Instantly share code, notes, and snippets.

@CasperEngl
CasperEngl / Swipe-Example.js
Created September 4, 2017 07:35 — forked from Tam/Swipe-Example.js
Vanilla JavaScript Swipe Detection
new Swipe(document.getElementById("gallery"), function(event, direction) {
event.preventDefault();
switch (direction) {
case "up":
// Handle Swipe Up
break;
case "down":
// Handle Swipe Down
break;