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


HTML Window moveBy()用法及代碼示例


Window moveBy()方法用於移動相對於其當前坐標具有指定像素數的窗口。 Window moveBy()方法接受兩個參數x和y,它們表示水平和垂直移動窗口的像素數。

用法:

window.moveBy(x, y)

Parameters Used:


  • x:它是必填參數,用於指定水平移動窗口的像素數量。
  • y:它是必填參數,用於指定垂直移動窗口的像素數量。

以下示例程序旨在說明窗口moveBy()方法:

程序:。相對於當前位置移動新窗口

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Window moveBy() Method in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Window moveBy() Method</h2> 
  
    <p> 
      For opening the Test window,  
      double click the "Open Window" button:
    </p> 
  
    <button ondblclick="Opwind()"> 
      Open Window 
    </button> 
    <br> 
  
    <p> 
      For moving the Test window, 
      double click the "Move Window" button:
    </p> 
  
    <button ondblclick="Movewind()"> 
      Move Window 
    </button> 
  
    <script> 
        function Opwind() { 
            TestWindow = window.open("", "TestWindow", 
                "width=400, height=400"); 
            TestWindow.document.write("This is a Test Window."); 
        } 
  
        function Movewind() { 
            TestWindow.moveBy(200, 200); 
            TestWindow.focus(); 
        } 
    </script> 
  
</body> 
  
</html>       

輸出:

單擊按鈕後

支持的瀏覽器:下麵列出了Window moveBy()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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