본문 바로가기

Local Oriented/jQueryMobile

jQueryMobile, tap/taphold/swipe/swipeleft/swiperight/orientationchange

$('...').live(이벤트,function(e){

});


이벤트

- tap, 터치. 모바일 기기에서는 tap -> click, PC 에서는 click -> tap 순으로 이벤트 생성

- taphold, 롱터치

- swipe, 터치 후 좌우로 밀기

- swipeleft, 터치 후 좌로 밀기

- swiperight, 터치 후 우로 밀기


function(e)

- e.type 에 tap/click/taphold/swipe/swipeleft/swiperight 세팅




$(window).bind('orientationchange',function(e){

  if(window.orientation==0){ ... } // 0 은 세로보기

  else{ ... } // 90 또는 -90 은 가로보기

});



http://dohoons.com/test/flick/, 상용 Flick Swipe 보다 훨씬 좋아요.. 강추..