화면 개체LOGIN

화면 개체

screen

screen 객체는 화면 정보를 나타냅니다.

screen.width: 화면 너비(픽셀 단위)

screen.height: 화면 높이 픽셀 단위,

screen.colorDepth: 8, 16, 24와 같은 색상 자릿수를 반환합니다.

아아아아아아아아아


다음 섹션
<!DOCTYPE html> <html> <body> <h3>Your Screen:</h3> <script> document.write("窗口可以使用的屏幕宽高: "); document.write(window.screen.availWidth + "*" + screen.availHeight); document.write("<br>"); document.write("屏幕的宽高: "); document.write(screen.availWidth + "*" + window.screen.height); document.write("<br>"); document.write("用户浏览器表示的颜色位数: "); document.write(window.screen.colorDepth); document.write("<br>"); document.write("用户浏览器表示的颜色位数(ps:IE不支持?亲测好像支持唉): "); document.write(screen.pixelDepth); </script> <body> </body> </html>
코스웨어