Screen colorDepth 屬性
Screen 對象定義和用法
colorDepth 屬性返回目標設備或緩沖器上的調色板的比特深度。
語法
screen.colorDepth
瀏覽器支持
所有主要瀏覽器都支持 colorDepth 屬性
實例s
實例 1
返回調色板的位深度:
<script>
document.write("顏色深度: " + screen.colorDepth);
</script>
document.write("顏色深度: " + screen.colorDepth);
</script>
以上實例輸出結果:
document.write("顏色深度: " + screen.colorDepth);
嘗試一下 ?
實例 2
在8比特屏顯示交替的背景顏色:
if (screen.colorDepth<=8)
//為8位屏幕的簡單的藍色背景色
document.body.style.background="#0000FF"
else
//為現(xiàn)代屏幕的華麗的藍色背景色
document.body.style.background="#87CEFA"
//為8位屏幕的簡單的藍色背景色
document.body.style.background="#0000FF"
else
//為現(xiàn)代屏幕的華麗的藍色背景色
document.body.style.background="#87CEFA"
嘗試一下 ?
更多實例
Screen 對象
更多建議: