Screen colorDepth 属性
screen.colorDepth 属性返回目标设备或缓冲器上的调色板的比特深度
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
screen.colorDepth
范例
返回调色板的位深度
<script> document.write("颜色深度: " + screen.colorDepth); </script>
范例 2
在8比特屏显示交替的背景颜色
if (screen.colorDepth<=8) //为8位屏幕的简单的蓝色背景色 document.body.style.background="#0000FF" else //为现代屏幕的华丽的蓝色背景色 document.body.style.background="#87CEFA"