JavaScript中的Screen屏幕对象

2016-02-19 08:55 6 1 收藏

想不想get新技能酷炫一下,今天图老师小编就跟大家分享个简单的JavaScript中的Screen屏幕对象教程,一起来看看吧!超容易上手~

【 tulaoshi.com - Web开发 】

这是基本JavaScript的屏幕对象



screen 屏幕对象 反映了当前用户的屏幕设置。

width 返回屏幕的宽度(像素数)。

height 返回屏幕的高度。

availWidth 返回屏幕的可用宽度(除去了一些不自动隐藏的类似任务栏的东西所占用的宽度)。

availHeight 返回屏幕的可用高度。

colorDepth 返回当前颜色设置所用的位数 - 1:黑白;8:256色;16:增强色;24/32:真彩色



下面是英文的Navigator浏览器的屏幕对象:



availHeight:minus permanent or semipermanent user interface features displayed by the operating system:such as the Taskbar on Windows.  

availWidth:Specifies the width of the screen, in pixels, minus permanent or semipermanent user interface:features displayed by the operating system, such as the Taskbar on Windows.  

colorDepth:The bit depth of the color palette, if one is in use; otherwise, the value is derived from screen.pixelDepth.  

height:Display screen height.  

pixelDepth:Display screen color resolution (bits per pixel).  

width:Display screen width.

来源:http://www.tulaoshi.com/n/20160219/1588849.html

延伸阅读
标签: Web开发
JavaScript中的Window窗口对象 他是JavaScript中最大的对象,它描述的是一个浏览器窗口。一般要引用它的属性和方法时,不需要用“window.xxx”这种形式,而直接使用“xxx”。一个框架页面也是一个窗口。 Window窗口对象有如下属性: name 窗口的名称,由打开它的连接(a target="...")或框架页(frame name="...")或某...
标签: Web开发
JavaScript中small函数方法是将 HTML 的SMALL 标识添加到String 对象中的文本两端。使用方法: strVariable.small( ) "String Literal".small( ) 下面的示例演示了 JavaScript中small函数方法是如何使用的: var strVariable = "This is a string"; strVariable = strVariable.small( );   ...
标签: Web开发
一直以来,我都主要是做winform方面的编程,最近做了点web方面的,所以也研究了几天的javascript。偶有心得故记之: 应用面向对象的思想在javascript中同样适用,关键的是你敢不敢用,想不想用。 我曾使用vs2005编写了一个vs2003工具箱完全类似的导航工具条,我比较喜欢在winform中通过这种方式向用户提供应用程序功能的导航。所...
标签: Web开发
在Javascript中 利用 document.selection 可以创建 textRange。 但其实不是什么时候都可以创建的。 我们可以利用 document.selection.type 来判断当前选中的是文本还是对象。 document.selection.type 返回三个值 "None" "Text" "Control" 只有当返回值是 Text 时,创建...
标签: Web开发
Event是Javascript中的重要事件,event代表事件的状态,专门负责对事件的处理,它的属性和方法能帮助我们完成很多和用户交互的操作,下面是对这个对象的简单总结,希望跟大家一起学习 一、Event对象的主要属性和方法 1.type:事件的类型,就是HTML标签属性中,没有on前缀之后的字符串,例如Click就代表单击事件。 2.srcE...

经验教程

14

收藏

45
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部