클릭으로도 동작해서 테스트시에도 용이함

$(function() {      
      //Enable swiping...
      $("#test").swipe( {
        //Generic swipe handler for all directions
        swipe:function(event, direction, distance, duration, fingerCount, fingerData) {
          $(this).text("You swiped " + direction );  
        },
        //Default is 75px, set to 0 for demo so any distance triggers swipe
         threshold:0
      });
    });
http://labs.rampinteractive.co.uk/touchSwipe/demos/





http://hangaebal.blogspot.kr/2014/07/jquery-plugin-touchswipe.html


+ Recent posts