'모바일웹 회전각도'에 해당되는 글 2건

  1. 2011.09.19 [Mobile] - 모바일웹 회전각도별 CSS 적용법
  2. 2011.07.05 [Javascript] - 모바일웹 회전각도 보는 소스

[Mobile] - 모바일웹 회전각도별 CSS 적용법

카테고리 없음 2011. 9. 19. 09:29
반응형
<script type="text/javascript">
function orient()
{
switch(window.orientation){
case 0: document.getElementByld("orient_css").href="css/iphone_portrait.css";
break;
case -90: document.getElementByld("orient_css").href="css/iphone_landscape.css";
break;
case 90: document.getElementByld("orient_css").href="css/iphone_landscape.css";
break;
}
}
window.onload=orient();
</script>
 
 
 
<body onorientationchange="orient()";>
</body>
반응형
:

[Javascript] - 모바일웹 회전각도 보는 소스

Jquery & Mobile 2011. 7. 5. 16:02
반응형
window.onorientationchange = function(){
orientation = window.orientation;
}
반응형
: