Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.screen.pixelDepth

概要

画面のビット深度を返します。

構文

depth = window.screen.pixelDepth

// 充分なビット深度がない場合に、より単純な色を選択しています
if ( window.screen.pixelDepth > 8 ) {
  document.style.color = "#FAEBD7";
} else {
  document.style.color = "#FFFFFF";
}

仕様

DOM Level 0。どの標準にも属しません。

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, AshfaqHossain, ethertank, Potappo
 最終更新者: AshfaqHossain,