該pixelDepth只讀屬性返回屏幕的像素深度。
像素深度是系統(tǒng)顯示硬件每個(gè)像素使用的位數(shù)。
screen.pixelDepth
var x = "Pixel Depth: " + screen.pixelDepth;測(cè)試看看?/?
所有瀏覽器完全支持pixelDepth屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
pixelDepth | 是 | 是 | 是 | 是 | 是 |
返回值: | 一個(gè)數(shù)字,表示顏色分辨率,以每個(gè)像素為單位。 可能的值:
|
---|
此示例顯示所有屏幕屬性:
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.colorDepth屬性