Zepto에서 터치 모듈 사용(이동단)

1485 단어 Zepto
우선 Zepto의 터치를 가져와야 합니다.js 플러그인



  
  Zepto touch     (   )
  


  
touch events test
// GitHub $(document).ready(function(){ $('#touch_test').bind('touchmove', function(e) { e.preventDefault() }) listen_to('#touch_test') function listen_to(el) { $(el).tap(function(){ console.log(' | tap!') //tap }) .doubleTap(function(){ console.log(' | double tap!') // }) .swipe(function(){ console.log(' | swipe!') // }) .swipeLeft(function(){ console.log(' | swipe left!') // }) .swipeRight(function(){ console.log(' | swipe right!') // }) .swipeUp(function(){ console.log(' | swipe up!') // }) .swipeDown(function(){ console.log(' | swipe down!') // }) .longTap(function(){ console.log(' | long tap!') // }) .singleTap(function(){ console.log(' | single tap!') // }) } });

좋은 웹페이지 즐겨찾기