colorDepth 属性返回目标设备或缓冲器上的调色板的比特深度。
screen.colorDepth
所有主要浏览器都支持 colorDepth 属性
返回调色板的位深度:
<script>
document.write("Color Depth: " + screen.colorDepth);
</script>
以上实例输出结果:
运行一下 »
在8比特屏显示交替的背景颜色:
运行一下 »<script>
if (screen.colorDepth<=8)
//simple blue background color for 8 bit screens
document.body.style.background="#0000FF"
else
//fancy blue background color for modern screens
document.body.style.background="#87CEFA"
</script>