[자바스크립트] screen 객체

By | 2월 17, 2009

객체는 두가지 요소로 이루어져 있습니다.

1. 객체의 속성(Attribute) - 특징(변수 or 데이터)
2. 객체의 행동(method) - 기능(메소드)

 

screeen 객체

[ 속   성 ]

hight : 전체 화면의 높이를 알려줌
width : 전체 화면의 폭을 알려줌
avaliHight : 브라우저의 도구모음, 메뉴 표시줄등을 제외한 실제화면의 높이를 알려줌
avaliWidth
: 실제화면의 폭을 보여줌 
colorDepth : 사용가능한 색상의 수를 알려줌

 

[ 예   제 ]

<html>
<head>
<title> 예 제 </tithle>
<script>
       document.write(" 전체화면 높이 : "+screen.height+"<br>");  
       document.write(" 전체화면 너비 : "+screen.width+"<br>");
       document.write(" 실제화면 높이 : "+screen.avaliHeight+"<br>");
       document.write(" 실제화면 너비 : "+screen.avaliWidth+"<br>");
       document.write(" 사용가능한색상 : "+screen.colorDepth+"<br>"); 
</script>

</head>
</html> 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments