当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Screen availWidth属性用法及代码示例


Screen availableWidth 属性用于返回用户屏幕的宽度(以像素为单位)。 Screen AvailWidth 属性返回的值不包括 Windows 任务栏等接口函数。

用法:

screen.availWidth

返回值:它返回一个数值,表示用户屏幕的宽度,以像素为单位

以下示例程序旨在说明屏幕的availWidth属性:
获取用户屏幕的宽度。

输入:

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Screen availWidth property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>Screen availWidth property</h2> 
      
<p> 
      For returning the screen width,  
      double click the "Screen Width" button: 
    </p> 
  
    <button ondblclick="screen_width()"> 
      Screen Width 
    </button> 
  
    <p id="width"></p> 
  
    <script> 
        function screen_width() { 
  
            var w = "Screen width: " + screen.availWidth + "px"; 
            document.getElementById("width").innerHTML = w; 
  
        } 
    </script> 
</body> 
</html>

输出:
在点击按钮之前:

单击按钮后:

支持的浏览器:支持的浏览器屏幕可用宽度列出如下:

  • 谷歌浏览器1
  • 边 12
  • 互联网浏览器 4
  • 火狐1
  • Opera 12.1
  • 野生动物园 1


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML DOM Screen availWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。