HTML DOM colorDepth 属性

定义和用法

colorDepth 属性返回目标设备或缓冲器上的调色板的比特深度。

语法

  1. screen.colorDepth

实例

  1. <html>
  2.  
  3. <body>
  4. <script type="text/javascript">
  5. document.write("<p>Color Depth: ")
  6. document.write(screen.colorDepth + "</p>")
  7. </script>
  8. </body>
  9.  
  10. </html>