當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。