當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Window screenLeft屬性用法及代碼示例


Window screenLeft 屬性用於返回‘x’ 或窗口相對於屏幕的水平坐標。它返回一個數字,表示窗口相對於屏幕的水平坐標。

用法:

window.screenLeft

返回值:它返回一個數字,表示窗口相對於屏幕的水平距離(以像素為單位)

以下示例程序旨在說明窗口 screenLeft 屬性:

獲取窗口相對於屏幕的水平坐標。

HTML


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

輸出:

單擊按鈕後:

支持的瀏覽器:支持的瀏覽器Window screenLeft 屬性列出如下:

  • 穀歌瀏覽器1
  • 邊 12
  • 火狐64
  • 互聯網瀏覽器 5
  • Opera 12.1
  • 野生動物園 1


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML DOM Window screenLeft Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。