World Wide Web/jqueryMobile
모바일 가로, 세로 방향 체크
인천매력쟁이
2013. 2. 14. 18:12
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 |
모바일 디바이스에서 가로 방향 세로 방향 체크