2017년 5월 27일 토요일

JavaScript : screen 객체를 이용한 화면의 해상도

<script language="javascript">
<!--
document.write("해상도 가로크기="+screen.width+"<br><br>");  //해상도 가로크기=1024
document.write("해상도 세로크기="+screen.height+"<br><br>");  //해상도 세로크기=768
document.write("사용자 영역 가로크기="+screen.availWidth+"<br><br>");  //사용자 영역 가로크기=1024
document.write("사용자 영역 세로크기="+screen.availHeight+"<br><br>");  //사용자 영역 세로크기=740
document.write("표현가능 색상수="+Math.pow(2,screen.colorDepth)+"<br><br>");  //표현가능 색상수=65536
document.write("픽셀 당 색상수="+Math.pow(2,screen.pixelDepth)+"<br><br>");  //픽셀 당 색상수=NaN
-->
</script>