国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

screen object

screen

The screen object represents screen information. Commonly used attributes are:

screen.width: screen width, in pixels;

screen.height: Screen height, in pixels;

screen.colorDepth: Returns the number of color digits, such as 8, 16, 24.

<html>
<head>
    <script>
        'use strict';
        alert('Screen size = ' + screen.width + ' x ' + screen.height);
    </script>
</head>
<body>
</body>
</html>
rrree


Continuing Learning
||
<!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("用戶瀏覽器表示的顏色位數(shù): "); document.write(window.screen.colorDepth); document.write("<br>"); document.write("用戶瀏覽器表示的顏色位數(shù)(ps:IE不支持?親測(cè)好像支持唉): "); document.write(screen.pixelDepth); </script> <body> </body> </html>
submitReset Code