Loading Please Wait...
The window.screen object contains information about the user's screen.
The window.screen object can be written without the window prefix.
Properties:
The screen.width property returns the width of the visitor's screen in pixels.
document.getElementById("demo").innerHTML =
"Screen Width: " + screen.width;
The screen.height property returns the height of the visitor's screen in pixels.
document.getElementById("demo").innerHTML =
"Screen Height: " + screen.height;
The screen.availWidth property returns the width of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.
document.getElementById("demo").innerHTML =
"Available Screen Width: " + screen.availWidth;
The screen.availHeight property returns the height of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.
document.getElementById("demo").innerHTML =
"Available Screen Height: " + screen.availHeight;
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".
The #rrggbb (rgb) values used in HTML represents "True Colors" (16,777,216 different colors).
document.getElementById("demo").innerHTML =
"Screen Color Depth: " + screen.colorDepth;
The screen.pixelDepth property returns the pixel depth of the screen.
For modern computers, Color Depth and Pixel Depth are equal.
document.getElementById("demo").innerHTML =
"Screen Pixel Depth: " + screen.pixelDepth;
How you feel about this blog:
Share this blog on:
If you find any error in the turtorials, or want to share your suggestion/feedback, feel free to send us email at: info@lynxsia.com
Contact UsWe are concern with various development process like website design & development, E-commerce development, Software development, Application development, SMS & Bulk SMS Provider, PWA Development, and many more..
Copyright ©
, Lynxsia IT Solutions, All rights reserved