1 2 3 4 5 6 7 8 9 10 11 12 13 | window.onorientationchange = function() { switch(window.orientation) { case 0: jQuery(".mainVisualTxt").animate({top :0}, {duration:350, specialEasing:{top : "easeInOutExpo"}}); break; case -90: jQuery(".mainVisualTxt").animate({top :-50}, {duration:350, specialEasing:{top : "easeInOutExpo"}}); break; case 90: jQuery(".mainVisualTxt").animate({top :-50}, {duration:350, specialEasing:{top : "easeInOutExpo"}}); break; } } | cs |
모바일 디바이스에서 가로 방향 세로 방향 체크
'World Wide Web > jqueryMobile' 카테고리의 다른 글
모바일 작업시 기본사항 (0) | 2016.06.17 |
---|---|
링크를 일반페이지 링크처럼 바꾸기 (0) | 2013.01.08 |