모바일 세로화면, 가로화면 javascript 설정
웹관련정보2013. 12. 18. 17:01
<script type="text/JavaScript">
function orient(){
switch(window.orientation){
case 0:
document.getElementById("orient_css").href = "css/mobile_portrait.css";
break;
case -90:
document.getElementById("orient_css").href = "css/mobile_landscape.css";
break;
case 90: }
}
window.onload = orient();
</script>
'웹관련정보' 카테고리의 다른 글
jquery를 이용하여 hover시 툴팁과 이미지 미리보기 (0) | 2013.12.18 |
---|---|
북마크시 iphone 인지 안드로이드 인지 일반 컴퓨터인지 확인후 아이콘설정 (0) | 2013.12.18 |
favicon 설정방법 (0) | 2013.12.18 |
function 사용방법 (0) | 2013.12.08 |
Iframe에 있는 값 가져오기 (0) | 2013.12.08 |