$('...').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 보다 훨씬 좋아요.. 강추..
'Local Oriented > jQueryMobile' 카테고리의 다른 글
jQueryMobile, mobileinit 이벤트로 $.mobile 초기화 (0) | 2012.08.14 |
---|