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


HTML Screen pixelDepth用法及代碼示例


屏幕pixelDepth屬性用於返回訪問者屏幕的顏色分辨率。它以位/像素為單位返回顏色分辨率。它是colorDepth屬性的別名。

pixelDepth屬性返回的可能是:

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

用法:


screen.pixelDepth

以下示例程序旨在說明Screen pixelDepth屬性:

檢查用戶屏幕的像素深度。

<!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> 
                 

輸出:

單擊按鈕後

支持的瀏覽器:下麵列出了Screen pixelDepth支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | Screen pixelDepth Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。