📅  最后修改于: 2020-10-24 08:10:45             🧑  作者: Mango
JavaScript屏幕对象保存浏览器屏幕的信息。可用于显示屏幕的宽度,高度,colorDepth,pixelDepth等。
导航器对象是window属性,因此可以通过以下方式访问它:
window.screen
要么,
screen
屏幕对象有许多属性,可返回浏览器的信息。
No. | Property | Description |
---|---|---|
1 | width | returns the width of the screen |
2 | height | returns the height of the screen |
3 | availWidth | returns the available width |
4 | availHeight | returns the available height |
5 | colorDepth | returns the color depth |
6 | pixelDepth | returns the pixel depth. |
让我们看看屏幕对象的不同用法。
screen.width: 1366
screen.height: 768
screen.availWidth: 1366
screen.availHeight: 728
screen.colorDepth: 24
screen.pixelDepth: 24