Contents

Views 19429 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
441 Etc [doc] 웜 프레임워크 검증환경 구축(작성중..) file hooni 2013.04.23 16058
440 PPT [doc] 방송통신공학회 논문지(학술대회) file hooni 2013.04.23 13953
439 PPT [doc] 발표 자료 ㅎㅎtalk4neo file hooni 2013.04.23 21025
438 System/OS [doc] 레드햇 리눅스 메뉴얼 (html버전) file hooni 2013.04.23 10517
437 PPT [doc] 논문.. VoIP 관련.. ㅋㅋ file hooni 2013.04.23 17111
436 System/OS [doc] 네트워크 장비와 라우터 설정 방법 발표 자료 file hooni 2013.04.23 14553
435 Develop [doc] UI개발시 유용한 소프트웨어 (개발 및 디버깅 툴) hooni 2013.04.23 12932
434 System/OS [doc] TCP/IP 강의 자료 (html) file hooni 2013.04.23 11246
433 Develop [doc] mfc 매뉴얼 다운 받아서 완성하기.. ㅋㄷ file hooni 2013.04.23 7715
432 Develop [doc] Json Framework 설치와 사용 file hooni 2013.04.23 21959
431 Develop [doc] Equation Solving에 대한 발표자료.. file hooni 2013.04.23 7993
430 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6458
Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 98 Next
/ 98