屏幕:colorDepth 属性

Screen.colorDepth 只读属性返回屏幕的颜色深度。根据 CSSOM,某些实现出于兼容性原因会返回 24。请参阅浏览器兼容性部分,了解那些没有返回 24 的实现。

一个数字。

示例

js
// Check the color depth of the screen
if (window.screen.colorDepth < 8) {
  // Use low-color version of page
} else {
  // Use regular, colorful page
}

规范

规范
CSSOM 视图模块
# dom-screen-colordepth

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅