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


HTML Window screenY用法及代码示例


Window screenY属性用于返回窗口相对于屏幕的“ y”或垂直坐标。它返回一个数字,该数字表示窗口相对于屏幕的垂直距离(以像素为单位)。

用法:

window.screenY

以下示例程序旨在说明window.screenY属性:


检查窗口相对于屏幕的Y坐标。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Window screenY Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Window screenY  Property</h2> 
  
    <p> 
      For returning the Y coordinates of a window  
      relative to the screen, double click the "Check  
      Y Coordinate" button:  
    </p> 
  
    <button ondblclick="coordinate()"> 
      Check Y Coordinate 
    </button> 
  
    <script> 
        function coordinate() { 
            var Y = window.open("", "myWindow"); 
            Y.document.write 
                    ("<p>Welcome to my Window"); 
            Y.document.write 
            ("<br>Y Coordinate:" + Y.screenY + "</p>"); 
        } 
    </script> 
  
</body> 
  
</html>                   

输出:

单击按钮后

支持的浏览器:下面列出了Window screenY属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


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