屏幕colorDepth屬性用於返回用於顯示圖像的調色板的位深,以每像素為單位。
可能的值為:
- 每像素1位
- 每像素4位
- 每像素8位
- 每像素15位
- 每像素16位
- 每像素24位
- 每像素32位
- 每像素48位
用法:
screen.colorDepth
以下示例程序旨在說明屏幕的colorDepth屬性:
獲取用戶屏幕的寬度。
<!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>
輸出:
單擊按鈕後
支持的瀏覽器:屏幕colorDepth支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Screen pixelDepth用法及代碼示例
- HTML Screen height用法及代碼示例
- HTML Screen availHeight用法及代碼示例
- HTML Screen availWidth用法及代碼示例
- HTML Screen width用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML li value用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML DOM name用法及代碼示例
- HTML Bdo dir用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML Map name用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | Screen colorDepth Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。