Contents

조회 수 19360 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
<!DOCTYPE html>  
<html>  
<head>  
<title>Orientation Checker</title>  
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximumscale=1.0; user-scalable=0;" />  
<script type="text/javascript" src="/js/jquery-1.6.1.min.js"></script>   
<script type="text/javascript">  
/*  
 * ios, android 둘다 지원되는 스크립트   
 */   
var ori_status;   
  
$(document).ready(function() {    
    window.onorientationchange = changeOrientation;  
    window.setTimeout(changeOrientation, 0);          
});  
  
// event handler  
function changeOrientation(){  
    if(ori_status == detectOrientation())return;  
    ori_status = detectOrientation();         
    alert(ori_status);    
}  
  
function detectOrientation(){  
    var orientation = window.orientation;   
    var rtn;  
  
    switch(orientation) {    
        case 90: case -90:    
            rtn = 'landscape';    
            break;    
        default:    
            rtn = 'portrait';    
    }    
    return rtn;  
}  
</script>  
</head>  
<body>  
  
</body>  
</html>  

?

  1. [js] 키보드 아스키코드(ASCII) 코드보기

  2. [js] 툴팁.. 좋은거.. (tooltip)

  3. [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드

  4. [js] 폼(form) 전송시 중복 클릭 방지 간단한 구문

  5. [js] 한글문서로 된 259가지 자바스크립트 예제파일

  6. [js] 한글주소(URL) 인코딩(encode, Encoding), 자바스크립트(JavaScript)

  7. [js] 핫키(단축키) 구현방법

  8. [js] 후리자(영규) 스타일들..

  9. [js]모바일 웹에서 orientationchange

  10. [kotlin] 코틀린 안드로이드 앱 버전/빌드 정보

  11. [lego] 세그웨이 이것만 볼것.. ㅎㅎ

  12. [link] iOS(아이폰) 개발 관련 ㅋㅋ

Board Pagination Prev 1 ... 59 60 61 62 63 64 65 66 67 68 ... 98 Next
/ 98