Views 19429 Votes 0 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
» Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 19429
180 Develop [php] XE 에서 php 구문 사용하기 (XE 템플릿에서) hooni 2013.10.31 19533
179 Etc [세미나] XML 레포트.. hooni 2003.04.23 19770
178 Etc 양성/음성 오류에 대한 개념 hooni 2013.04.23 19910
177 Etc [web] 제로보드 XE 템플릿에서 if문에 대해서 알아봅시다 hooni 2013.08.16 19917
176 System/OS [windows] 여러가지 활용 팁 hooni 2003.04.23 20030
175 Develop [c] AES 알고리즘 (암호화/복호화) file hooni 2003.04.23 20142
174 Develop [c] UTF-8을 EUC-KR로 변환.. (iconv) file hooni 2013.04.23 20190
173 Develop [ios] UIView에서 상위 UIViewController 가져오기 hooni 2013.09.27 20230
172 System/OS [linux] 꿀통(honeyd) 설치하기.. 메뉴얼 과정 6 file hooni 2006.04.23 20299
171 Develop [php] substr() 한글 자를 때 깨짐 방지 hooni 2014.01.09 20438
170 Develop [android] [번역] 안드로이드 Android Cloud to Device Messaging(C2DM) hooni 2013.04.23 20480
169 Develop [opengl] 컴퓨터 그래픽스 강의 자료(수업자료) file hooni 2003.04.23 20521
168 System/OS asx미디어 정보 기록.. hooni 2003.04.23 20601
167 Develop [c++] 디렉토리 내의 파일 찾기 FindFirstFile() 함수 6 hooni 2013.04.23 20650
166 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20696
Board Pagination Prev 1 ... 61 62 63 64 65 ... 74 Next
/ 74