Views 19360 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
597 Develop [ios] 동영상 플레이어 샘플 (for Remote Url) file hooni 2017.02.07 1648
596 Develop [ios] 디렉토리 하하하.. hooni 2013.04.23 32633
595 Develop [ios] 로컬에 있는 html 실행하기 hooni 2015.02.10 1035
594 Develop [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기 hooni 2015.02.10 958
593 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 860
592 Develop [ios] 미스터피자(Mr.pizza) 어플 file hooni 2013.04.23 42633
591 Develop [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images) hooni 2013.10.31 45453
590 Develop [ios] 비동기 블럭 코드 예제 hooni 2014.11.21 825
589 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 694
588 Develop [ios] 상위 ViewController 가져오기 hooni 2015.10.12 960
587 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 608
586 Develop [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인 hooni 2015.04.28 2049
585 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 29457
584 Develop [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기 hooni 2014.11.19 1558
583 Develop [ios] 스터디 자료 (from 종길M) secret hooni 2013.06.04 0
582 Develop [iOS] 시뮬레이터에 푸시 알림을 보내는 방법 file hooni 2021.10.13 1830
Board Pagination Prev 1 ... 35 36 37 38 39 ... 74 Next
/ 74