The window.screen object contains information about the user's screen.
The window.screen
object can be written without the window prefix.
Properties:
screen.width
screen.height
screen.availWidth
screen.availHeight
screen.colorDepth
screen.pixelDepth
The screen.width
property returns the width of the visitor's screen in pixels.
Display the width of the screen in pixels:
document.getElementById("demo").innerHTML =
"Screen Width: " + screen.width;
Result will be:
The screen.height
property returns the height of the visitor's screen in pixels.
Display the height of the screen in pixels:
document.getElementById("demo").innerHTML =
"Screen Height: " + screen.height;
Result will be:
The screen.availWidth
property returns the width of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.
Display the available width of the screen in pixels:
document.getElementById("demo").innerHTML =
"Available Screen Width: " + screen.availWidth;
Result will be:
The screen.availHeight
property returns the height of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.
Display the available height of the screen in pixels:
document.getElementById("demo").innerHTML =
"Available Screen Height: " + screen.availHeight;
Result will be:
The screen.colorDepth
property returns the number of bits used to display one color.
All modern computers use 24 bit or 32 bit hardware for color resolution:
Older computers used 16 bits: 65,536 different "High Colors" resolution.
Very old computers, and old cell phones used 8 bits: 256 different "VGA colors".
Display the color depth of the screen in bits:
document.getElementById("demo").innerHTML =
"Screen Color Depth: " + screen.colorDepth;
Result will be:
The #rrggbb (rgb) values used in HTML represents "True Colors" (16,777,216 different colors)
The screen.pixelDepth
property returns the pixel depth of the screen.
Display the pixel depth of the screen in bits:
document.getElementById("demo").innerHTML =
"Screen Pixel Depth: " + screen.pixelDepth;
Result will be:
For modern computers, Color Depth and Pixel Depth are equal.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!