Contents

조회 수 19357 댓글 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>  

?

  1. [iphone] 파일 업로드 샘플 코드 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views11120
    Read More
  2. [js] JSON 컨트롤.. 재귀호출로 값 출력하기

    Date2013.04.23 CategoryDevelop Byhooni Views28637
    Read More
  3. [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기

    Date2013.04.23 CategoryDevelop Byhooni Views26360
    Read More
  4. [android] keytool을 사용하여 키스토어 생성

    Date2013.04.23 CategoryDevelop Byhooni Views69510
    Read More
  5. [js]모바일 웹에서 orientationchange

    Date2013.04.23 CategoryDevelop Byhooni Views19357
    Read More
  6. 서기의 PHP 동영상 강의(싱싱해)

    Date2013.05.15 CategoryDevelop Byhooni Views30980
    Read More
  7. [js] 자바스크립트의 클로저 (JavaScript's Closure)

    Date2013.05.15 CategoryDevelop Byhooni Views12977
    Read More
  8. [Android] 2010년에 만들었던 세미나 자료.

    Date2013.05.28 CategoryDevelop Byhooni Views64661
    Read More
  9. [iphone] PerfectlyClear 보정솔루션 최신..

    Date2013.05.28 CategoryDevelop Byhooni Views0
    Read More
  10. [ios] IB 없이 개발하기 (html)

    Date2013.05.31 CategoryDevelop Byhooni Views0
    Read More
  11. [ios] 스터디 자료 (from 종길M)

    Date2013.06.04 CategoryDevelop Byhooni Views0
    Read More
  12. [ios] 패스(path) 앱 메뉴 스타일

    Date2013.06.11 CategoryDevelop Byhooni Views0
    Read More
Board Pagination Prev 1 ... 42 43 44 45 46 47 48 49 50 51 ... 71 Next
/ 71