HTML DOM pixelDepth 属性

定义和用法

pixelDepth 属性返回显示屏幕的颜色分辨率(比特每像素)。

语法

  1. screen.pixelDepth

实例

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