screen.bufferDepth

書式

screen.bufferDepth

説明

仮想画面(内部画面/オフスクリーン)の色数をビット数で返します。ビット数と色数の対応は以下のようになります。このプロパティはInternet Explorer 5以降が対応しています。
colorDepthの値色数
-1仮想画面あり
0デフォルト、仮想画面なし
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.bufferDepth);
// --></script>
</body>
</html>