--- title: Screen.colorDepth slug: Web/API/Screen/colorDepth tags: - API translation_of: Web/API/Screen/colorDepth ---
返回屏幕的颜色深度(color depth)。根据CSSOM( CSS对象模型 )视图,为兼容起见,该值总为24。
bitDepth = window.screen.colorDepth
// 检测屏幕的颜色深度 if ( window.screen.colorDepth < 8) { // 使用低色彩版本页面 } else { // 使用常规的彩色版页面 }
Specification | Status | Comment |
---|---|---|
{{ SpecName('CSSOM View', '#dom-screen-colordepth', 'Screen.colorDepth') }} | {{ Spec2('CSSOM View') }} |