屏幕pixelDepth属性用于返回访问者屏幕的颜色分辨率。它以位/像素为单位返回颜色分辨率。它是colorDepth属性的别名。
pixelDepth属性返回的可能是:
- 每像素1位
- 每像素4位
- 每像素8位
- 每像素15位
- 每像素16位
- 每像素24位
- 每像素32位
- 每像素48位
用法:
screen.pixelDepth
以下示例程序旨在说明Screen pixelDepth属性:
检查用户屏幕的像素深度。
<!DOCTYPE html>
<html>
<head>
<title>
Screen pixelDepth Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Screen pixelDepth Property</h2>
<p>
For checking the screen's pixel depth,
double click the "Check Pixel Depth" button:
</p>
<button ondblclick="pixel_depth()">
Check Pixel Depth
</button>
<p id="pd"></p>
<script>
function pixel_depth() {
var r = "Pixel depth in bits per pixel:"
+ screen.pixelDepth;
document.getElementById("pd").innerHTML = r;
}
</script>
</body>
</html>
输出:
单击按钮后
支持的浏览器:下面列出了Screen pixelDepth支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Screen height用法及代码示例
- HTML Screen availHeight用法及代码示例
- HTML Screen availWidth用法及代码示例
- HTML Screen width用法及代码示例
- HTML Screen colorDepth用法及代码示例
- HTML DOM URL用法及代码示例
- HTML DOM dir用法及代码示例
- HTML li value用法及代码示例
- HTML DOM id用法及代码示例
- HTML DOM specified用法及代码示例
- HTML DOM name用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML DOM value用法及代码示例
- HTML Map name用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | Screen pixelDepth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。