<!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
'Web' 카테고리의 다른 글
MARQUEE 태그 (0) | 2017.05.26 |
---|---|
Tool tip (툴팁) 에관하여 :: TITLE vs ALT (0) | 2017.05.26 |
IE 렌더링 모드 (0) | 2017.05.25 |
익스플로러(IE)에서 overflow:hidden 안먹히는 이유 (0) | 2017.05.24 |
HTML [CSS] 글꼴 크기를 지정하는 font-size 속성(px, pt, %, em 차이) (0) | 2017.05.24 |