JavaScript screen对象
在JavaScript的screen对象拥有浏览器屏幕的信息。它可用于显示屏幕宽度,高度,颜色深度,像素深度等。
screen对象是window属性,因此可以通过以下方式访问它:
window.screen或者screen
JavaScript screen对象属性
width 返回屏幕的宽度
height 返回屏幕的高度
availWidth 返回可用的宽度
availHeight 返回可用高度
colorDepth 返回颜色深度
pixelDepth 返回像素深度。
JavaScript screen对象示例
让我们看看屏幕对象的不同用法。
<script>
document.writeln("<br/>screen.width: "+screen.width);
document.writeln("<br/>screen.height: "+screen.height);
document.writeln("<br/>screen.availWidth: "+screen.availWidth);
document.writeln("<br/>screen.availHeight: "+screen.availHeight);
document.writeln("<br/>screen.colorDepth: "+screen.colorDepth);
document.writeln("<br/>screen.pixelDepth: "+screen.pixelDepth);
</script>