예로 링크가 걸린 이미지 위에서는 이벤트가 적용 되지 않는다.
HTML의 문제가 아니라 기본 옵션으로 touchswipe 에서 제외하고 있다.
http://labs.rampinteractive.co.uk/touchSwipe/demos/Excluded_children.html
swipe 제외 영역에 .noSwipe 클래스명을 할당해 주거나 excludedElements 를 재정의 해주면 된다. 전부 삭제할 경우는 아래와 같이 excludedElements 를 사용하면 된다.
1 2 3 4 5 6 7 8 9 | $( function () { $( "#main" ).swipe( { swipe: function (event, direction, distance, duration, fingerCount, fingerData) { $( this ).text( "You swiped " + direction ); }, threshold:0, excludedElements: "" }); }); |