colorDepth只讀屬性返回屏幕的顏色深度。
colorDepth是用于表示單個(gè)像素顏色的位數(shù)。
colorDepth指示設(shè)備屏幕可以產(chǎn)生多少種顏色。
例如,顏色深度為8的屏幕可以產(chǎn)生256種顏色(2 8)。
screen.colorDepth
var x = "Color Depth: " + screen.colorDepth;測(cè)試看看?/?
所有瀏覽器完全支持colorDepth屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
colorDepth | 是 | 是 | 是 | 是 | 是 |
返回值: | 一個(gè)數(shù)字,表示用于顯示圖像的調(diào)色板的位深,以每像素為單位。 可能的值:
|
---|
此示例顯示所有屏幕屬性:
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>"; document.write(txt);測(cè)試看看?/?
screen參考:screen.availHeight屬性
screen參考:screen.availWidth屬性
screen參考:screen.height屬性
screen參考:screen.width屬性
screen參考:screen.pixelDepth屬性