Window screen.pixelDepth 属性

定义和用法

pixelDepth 属性返回屏幕的颜色深度。

pixelDepth 属性返回以每像素位数为单位的颜色深度。

pixelDepth 属性是只读的。

另请参阅:

screen.colorDepth 属性

提示:

Internet Explorer 9 及更早版本不支持 pixelDepth 属性。

但是,pixelDepth colorDepth 返回相同的值。

由于所有浏览器都支持 colorDepth,请改用该属性。

实例

例子 1

获取屏幕的颜色分辨率:

let depth = screen.pixelDepth;

亲自试一试

例子 2

所有屏幕属性:

let text = "Total width/height: " + screen.width + "*" + screen.height + "<br>" +
"Available width/height: " + screen.availWidth + "*" + screen.availHeight + "<br>" +
"Color depth: " + screen.colorDepth + "<br>" +
"Color resolution: " + screen.pixelDepth;

亲自试一试

语法

screen.pixelDepth

返回值

类型 描述
数字

每像素位的颜色分辨率:

1, 4, 8, 15, 16, 24, 32, 或 48。

浏览器支持

所有浏览器都支持 screen.pixelDepth

Chrome IE Edge Firefox Safari Opera
Chrome IE Edge Firefox Safari Opera
支持 支持 支持 支持 支持 支持

相关页面

screen.availHeight 属性

screen.availWidth 属性

screen.height 属性

screen.width 属性