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


HTML DOM Window screenTop属性用法及代码示例


窗纱顶部属性用于返回‘y’或窗口相对于屏幕的垂直坐标。它返回一个数字,表示窗口相对于屏幕的垂直坐标。
用法:

window.screenTop

返回值:返回一个表示窗口相对于屏幕的水平和垂直距离的数字(以像素为单位)

以下示例程序旨在说明窗口 screenTop 属性:
获取窗口相对于屏幕的垂直坐标。

HTML


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

输出:

单击按钮后

支持的浏览器:支持的浏览器窗纱Top 属性列出如下:

  • 谷歌浏览器 1 及以上版本
  • 边 12 及以上
  • 火狐 64 及以上版本
  • Internet Explorer 5 及更高版本
  • Opera 12.1 及以上版本
  • Safari 1 及以上版本


相关用法


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