ディスプレイ情報 |
〆 ディスプレイ情報を取得します
<script type="text/javascript">
<!--
// ディスプレイサイズ
document.write("DisplaySize : ",screen.width, "x",screen.height);
// 利用可能ディスプレイサイズ
document.write("AvailDisplaySize : ",screen.availWidth, "x",screen.availHeight);
// ディスプレイの表示情報
document.write("PixelDepth : ",screen.pixelDepth);
document.write("ColorDepth(モニタの色ビット数) : ",screen.colorDepth);
⁄⁄-->
</script>
|
|||
|

Web