Contents

Views 19357 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
<!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
No. Category Subject Author Date Views
789 Develop [c] 패킷 에널라이저 예제 소스(성안당) file hooni 2013.04.23 6947
788 Develop [c] 단기과정[01/24] 정렬 알고리즘 hooni 2003.04.23 6955
787 Develop [c++] 트리컨트롤 스텝 2 예제.. file hooni 2013.04.23 6955
786 Develop [web] 웹 연동 프로그램 모음.. file hooni 2013.04.23 6960
785 Develop [c] 소켓 프로그래밍 요약.. hooni 2003.04.23 6964
784 Develop [c++] 템플릿(Template) 예제 소스.. file hooni 2013.04.23 6976
783 Develop 도메인 관련 솔루션 분석할 거.. ㅋㄷ file hooni 2013.04.23 6981
782 Develop [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함) file hooni 2003.04.23 6993
781 Develop [js] 점점 커지는 새창.. hooni 2003.04.23 6998
780 Develop [js] 이미지 미리 로딩하기 hooni 2003.04.23 7008
779 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 7011
778 Develop [c] C에서 MySQL DB 사용하기~ file hooni 2003.04.23 7011
Board Pagination Prev 1 ... 28 29 30 31 32 33 34 35 36 37 ... 98 Next
/ 98