--- title: Screen.pixelDepth slug: Web/API/Screen/pixelDepth tags: - API translation_of: Web/API/Screen/pixelDepth ---
{{APIRef("CSSOM View")}}

概述

返回屏幕的位深度/色彩深度(bit depth)。根据CSSOM( CSS对象模型 )视图,为兼容起见,该值总为24。

语法

depth = window.screen.pixelDepth

示例

// 如果没有足够的位深度/色彩深度(bit depth),就选择一个更纯的颜色
if ( window.screen.pixelDepth > 8 ) {
  document.style.color = "#FAEBD7";
} else {
  document.style.color = "#FFFFFF";
}

规范

Specification Status Comment
{{ SpecName('CSSOM View', '#dom-screen-pixeldepth', 'Screen.pixelDepth') }} {{ Spec2('CSSOM View') }}

相关链接