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


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


屏幕颜色深度属性用于返回用于显示图像的调色板的位深度,以每像素位数为单位。
可能的值为:

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

用法:

screen.colorDepth

返回值:一个数字,表示用于显示图像的调色板的位深度,以每像素位数为单位。

以下示例程序旨在说明屏幕 colorDepth 属性:

获取用户屏幕的宽度。

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Screen colorDepth property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>Screen colorDepth property</h2> 
      
<p> 
      or returning the color depth, double 
      click the "Colour Depth" button: 
    </p> 
  
    <button ondblclick="color_depth()"> 
      Color Depth 
    </button> 
  
    <p id="depth"></p> 
  
    <script> 
        function color_depth() { 
  
            var c =  
                "Color Depth in bits per pixel : " 
                            + screen.colorDepth; 
            document.getElementById("depth").innerHTML = c; 
  
        } 
    </script> 
</body> 
</html> 

输出:

在点击按钮之前:

单击按钮后:

支持的浏览器:HTML支持的浏览器|屏幕颜色深度属性列出如下:

  • 谷歌浏览器1
  • 边 12
  • 互联网浏览器 4
  • 火狐1
  • Opera 12.1
  • 野生动物园 1


相关用法


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