Contents

조회 수 19355 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
733 Develop [js] URL 파싱하기 (jQuery 안쓰고) hooni 2017.12.14 1298
732 Develop [android] 간단한 SQLIite 예제 hooni 2017.06.14 1309
731 Develop [php] 한글 문자열 자르기 (utf-8) hooni 2015.11.10 1311
730 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 1326
729 Develop [ios] How to set up clang formatter hooni 2015.09.17 1349
728 Develop [swift] popToRoot 모달뷰, 네비게이션컨트롤러 한꺼번에 닫기 file hooni 2021.01.29 1373
727 Develop [ios] Swift 4 String, Date, DateFormatter 예제 hooni 2018.10.18 1386
726 Develop [swift] UIView에서 subview 찾기 hooni 2022.12.09 1389
725 Develop What is difference between Get, Post, Put and Delete? hooni 2018.02.28 1394
724 Develop [android] 레이아웃 사이즈 변경 (동적; programmatically) hooni 2016.11.07 1472
723 Develop [ios] Pod 특정 버전 설치하고 사용하기 hooni 2022.05.28 1505
722 Develop [ios] binary를 C코드로 변환 file hooni 2015.01.03 1521
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 71 Next
/ 71