HTML:標記語言
CSS:樣式語言
JavaScript:指令碼語言
Web API:程式設計介面
所有 Web 技術
學習 Web 開發
發現我們的工具
更好地瞭解 MDN
此特性已相當成熟,可在許多裝置和瀏覽器版本上使用。自 2015 年 7 月以來,各瀏覽器均已提供此特性。
Screen.colorDepth 只讀屬性返回螢幕的顏色深度。根據 CSSOM,出於相容性原因,某些實現返回 24。對於那些不返回 24 的實現,請參閱瀏覽器相容性部分。
Screen.colorDepth
24
一個數字。
// Check the color depth of the screen if (window.screen.colorDepth < 8) { // Use low-color version of page } else { // Use regular, colorful page }
載入中…
Screen.pixelDepth