Contents

조회 수 19414 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
441 Etc [doc] 웜 프레임워크 검증환경 구축(작성중..) file hooni 2013.04.23 16038
440 PPT [doc] 방송통신공학회 논문지(학술대회) file hooni 2013.04.23 13943
439 PPT [doc] 발표 자료 ㅎㅎtalk4neo file hooni 2013.04.23 21012
438 System/OS [doc] 레드햇 리눅스 메뉴얼 (html버전) file hooni 2013.04.23 10506
437 PPT [doc] 논문.. VoIP 관련.. ㅋㅋ file hooni 2013.04.23 17100
436 System/OS [doc] 네트워크 장비와 라우터 설정 방법 발표 자료 file hooni 2013.04.23 14530
435 Develop [doc] UI개발시 유용한 소프트웨어 (개발 및 디버깅 툴) hooni 2013.04.23 12922
434 System/OS [doc] TCP/IP 강의 자료 (html) file hooni 2013.04.23 11227
433 Develop [doc] mfc 매뉴얼 다운 받아서 완성하기.. ㅋㄷ file hooni 2013.04.23 7711
432 Develop [doc] Json Framework 설치와 사용 file hooni 2013.04.23 21949
431 Develop [doc] Equation Solving에 대한 발표자료.. file hooni 2013.04.23 7988
430 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6447
Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 98 Next
/ 98