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>  

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
709 Develop [c] 팩토리얼 서버/클라이언트.. file hooni 2003.04.23 17286
708 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17143
707 Develop [winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ file hooni 2013.04.23 17088
706 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
705 Develop [ios] None IB vs. StoryBoard 샘플 소스 file hooni 2013.09.06 16937
704 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16847
703 Develop [ios] 푸시알림(APNS)에 대한 php 라이브러리 ㅋㅋ hooni 2013.04.23 16638
702 Develop 프로그래밍 소스 관련 사이트.. hooni 2013.04.23 16486
701 Develop [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 hooni 2013.04.23 16447
700 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 16392
699 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
698 Develop [c++] p.58 연습문제 2번 hooni 2003.04.23 16298
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 71 Next
/ 71