Swipe event utility for mobile devices.
http://tehvgg.github.io/swipe-util/
<script src="swipe.js"></script>
var el = document.body;
var swipe = new Swipe(el, { doPreventScroll: true });
el.addEventListener(swipe.up, handleSwipe);
el.addEventListener(swipe.down, handleSwipe);
el.addEventListener(swipe.left, handleSwipe);
el.addEventListener(swipe.right, handleSwipe);