JS中的Screen屏幕对象详解
这是基本JavaScript的屏幕对象
screen屏幕对象反映了当前用户的屏幕设置。
width返回屏幕的宽度(像素数)。
height返回屏幕的高度。
availWidth返回屏幕的可用宽度(除去了一些不自动隐藏的类似任务栏的东西所占用的宽度)。
availHeight返回屏幕的可用高度。
colorDepth返回当前颜色设置所用的位数-1:黑白;8:256色;16:增强色;24/32:真彩色
下面是英文的Navigator浏览器的屏幕对象:
availHeight:minuspermanentorsemipermanentuserinterfacefeaturesdisplayedbytheoperatingsystem:suchastheTaskbaronWindows.
availWidth:Specifiesthewidthofthescreen,inpixels,minuspermanentorsemipermanentuserinterface:featuresdisplayedbytheoperatingsystem,suchastheTaskbaronWindows.
colorDepth:Thebitdepthofthecolorpalette,ifoneisinuse;otherwise,thevalueisderivedfromscreen.pixelDepth.
height:Displayscreenheight.
pixelDepth:Displayscreencolorresolution(bitsperpixel).
width:Displayscreenwidth.
希望爱站技术频道小编带来的“JS中的Screen屏幕对象详解”内容对你们有帮助,我们每天提供的技术知识点都非常的有参考价值,这对新手朋友来说非常实用,收藏下随时都可以查看。
上一篇:js编程中旋转轮播图的实例代码
下一篇:JS中的Math对象使用方法介绍