본문 바로가기
카테고리 없음

모바일 웹에서 화면이 세로모드, 가로모드일 때 각각 다른화면 출력

by 막이 2014. 12. 19.
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
  <title>모바일 세로모드, 가로모드 화면 테스트</title>
</head>
<body onorientationchange="orient();">
<script type="text/javascript">
//<![CDATA[
    window.onload = orient;
    function orient(){
        switch(window.orientation){
            case 0 :
                document.getElementById("orient_portrait").style.display="block";
                document.getElementById("orient_landscape").style.display="none";
                break;
            case -90 :
                document.getElementById("orient_portrait").style.display="none";
                document.getElementById("orient_landscape").style.display="block";
                break;
            case -90 :
                document.getElementById("orient_portrait").style.display="none";
                document.getElementById("orient_landscape").style.display="block";
                break;
        }
    }
//]]>
</script>
<div id="orient_portrait" style="display:none;width:100%;height:100%;">
    세로모드일 때 출력
</div>
<div id="orient_landscape" style="display:none;width:100%;height:100%;">
    가로모드일 때 출력
</div>
</body>
</html>