Web

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

알콜뭉뭉이 2017. 5. 25. 07:34
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

<!doctype html>
<html>
<head>
    <title>모바일 세로모드, 가로모드 화면 테스트</title>
    <meta charset="utf-8">
</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>


관련자료
http://blog.kgom.kr/68