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


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