更多"Try it Yourself"下面的例子。
定義和用法
該pixelDepth屬性返回色分辨率(in bits per pixel)訪問者的屏幕。
Tip:在Internet Explorer 9及更早版本不支持pixelDepth財產。 然而, 顏色質量匯總屬性表示同樣的事情pixelDepth財產。 由於所有主流瀏覽器都支持顏色質量匯總,使用該屬性。
瀏覽器支持
在表中的數字規定,完全支持該財產瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
pixelDepth | 是 | 10 | 是 | 是 | 是 |
句法
screen.pixelDepth
技術細節
返回值: | 一個數字,代表顏色的分辨率,在每個像素的位數。 可能的值:
|
---|
更多示例
例
在一個示例中,所有屏幕屬性:
var txt = "";
txt += "<p>Total width/height: " + screen.width + "*" +
screen.height + "</p>";
txt += "<p>Available width/height: " +
screen.availWidth + "*" + screen.availHeight + "</p>";
txt += "<p>Color
depth: " + screen.colorDepth + "</p>";
txt += "<p>Color resolution: " +
screen.pixelDepth + "</p>";
試一試» <屏幕對象