当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Screen pixelDepth属性用法及代码示例


屏幕像素深度属性用于返回访问者屏幕的颜色分辨率。它返回颜色分辨率(以每像素位数为单位)。它是一个别名Screen colorDepth.

PixelDepth 属性可能返回的是:

  • 每像素 1 位
  • 每像素 4 位
  • 每像素 8 位
  • 每像素 15 位
  • 每像素 16 位
  • 每像素 24 位
  • 每像素 32 位
  • 每像素 48 位

用法:

screen.pixelDepth

返回值:一个数字,表示颜色分辨率,以每像素位数为单位。

以下示例程序旨在说明屏幕像素深度属性:

检查用户屏幕的像素深度。

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Screen pixelDepth Property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Screen pixelDepth Property</h2> 
      
<p> 
      For checking the screen's pixel depth, 
      double click the "Check Pixel Depth" button:  
    </p> 
  
    <button ondblclick="pixel_depth()"> 
      Check Pixel Depth 
    </button> 
  
    <p id="pd"></p> 
  
    <script> 
        function pixel_depth() { 
            var r = "Pixel depth in bits per pixel : " 
                                + screen.pixelDepth; 
            document.getElementById("pd").innerHTML = r; 
        } 
    </script> 
</body> 
</html> 

输出:

单击按钮后:

支持的浏览器:支持的浏览器屏幕像素深度属性列表如下:

  • 谷歌浏览器 1 及以上版本
  • 边 12 及以上
  • Internet Explorer 9 及更高版本
  • 火狐浏览器1及以上版本
  • Opera 12.1 及以上版本
  • Safari 1 及以上版本


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML DOM Screen pixelDepth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。