TouchSwipe
https://github.com/mattbryson/TouchSwipe-Jquery-Plugin
bower install jquery-touchswipe --save
$(function() {
  $("#test").swipe( {
    //Навправление свайпа
    swipeUP:function(event, direction, distance, duration, fingerCount, fingerData) {
      $(this).text("You swiped " + direction );  
    }
  });
  
});