screen.colorDepth

書式

screen.colorDepth

説明

モニタ画面の色数をビット数で返します。ビット数と色数の対応は以下のようになります。
colorDepthの値色数
1白黒
24色
38色
416色
8256色
1665536色
241677万色
321677万色+αチャンネル

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
</head>
<body>
<script type="text/javascript"><!--
document.write(screen.colorDepth);
// --></script>
</body>
</html>