个性化阅读
专注于IT技术分析

JavaScript的屏幕对象

本文概要

JavaScript的屏幕对象包含浏览器屏幕的信息。它可以用来显示屏幕宽度,高度,颜色质量汇总,pixelDepth等

导航器对象是窗口属性,因此它可以通过访问:

window.screen

要么,

screen

JavaScript的屏幕对象的属性

有迹象表明,返回浏览器的信息屏幕上对象的许多特性。

没有。属性描述
1width返回屏幕的宽度
2height返回屏幕的高度
3availWidth返回可用宽度
4availHeight返回可用高度
5colorDepth返回颜色深度
6pixelDepth返回像素深度。

JavaScript的屏幕对象的实施例

让我们来看看画面对象的不同用法。

<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>
screen.width: 1366 
screen.height: 768 
screen.availWidth: 1366 
screen.availHeight: 728 
screen.colorDepth: 24 
screen.pixelDepth: 24
赞(0)
未经允许不得转载:srcmini » JavaScript的屏幕对象

评论 抢沙发

评论前必须登录!