Contents

조회 수 19355 댓글 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>  

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
» Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 19355
764 Develop [js] 후리자(영규) 스타일들.. file hooni 2013.04.23 7152
763 Develop [js] 핫키(단축키) 구현방법 hooni 2003.04.23 7629
762 Develop [js] 한글주소(URL) 인코딩(encode, Encoding), 자바스크립트(JavaScript) hooni 2013.04.23 11326
761 Develop [js] 한글문서로 된 259가지 자바스크립트 예제파일 file hooni 2013.04.23 6764
760 Develop [js] 폼(form) 전송시 중복 클릭 방지 간단한 구문 hooni 2013.04.23 9314
759 Develop [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 hooni 2013.04.23 16441
758 Develop [js] 툴팁.. 좋은거.. (tooltip) file hooni 2013.04.23 7058
757 Develop [js] 키보드 아스키코드(ASCII) 코드보기 hooni 2003.04.23 32476
756 Develop [js] 키보드 아스키 코드 확인하는 간단한 소스 hooni 2003.04.23 7746
755 Develop [js] 큐 형식으로 배열사용.. ㅋㅋ hooni 2013.04.23 7012
754 Develop [js] 쿠키(cookie)에 대한 설명과 예제.. hooni 2003.04.23 8320
Board Pagination Prev 1 ... 30 31 32 33 34 35 36 37 38 39 ... 98 Next
/ 98