pixelDepth 属性返回显示屏幕的颜色分辨率(比特每像素)。
screen.pixelDepth
The pixelDepth property is supported in Internet Explorer 10, Firefox, Opera, Chrome, and Safari.
注意:Internet Explorer 9 及更早 IE 版本浏览器不支持 pixelDepth 属性。
提示: colorDepth 属性和pixelDepth属性完成同样的事情。由于所有主流浏览器都支持colorDepth,所以都使用该属性。/p>
返回你的屏幕的颜色分辨率:
<script>
document.write("Color resolution: " + screen.pixelDepth);
</script>
以上实例输出结果:
运行一下 »