Latest web development tutorials

Window moveBy () method

Window Object Reference Window object

Definition and Usage

The current coordinate moveBy () method of the window to move it relative to the specified pixels.

grammar

window.moveBy(x,y)


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support moveBy () method


Examples

Examples

The window relative to its current position 250 pixels:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function openWin(){
    myWindow=window.open('','','width=200,height=100');
    myWindow.document.write("<p>这是我的窗口</p>");
}
function moveWin(){
    myWindow.moveBy(250,250);
    myWindow.focus();
}
</script>
</head>
<body>

<input type="button" value="打开我的窗口" onclick="openWin()" />
<br><br>
<input type="button" value="移动我的窗口" onclick="moveWin()" />

</body>
</html>

try it"


Window Object Reference Window object