HTML 窗口 moveBy() 方法
HTML 窗口 moveBy() 方法使窗口相对于其当前坐标移动。
语法
以下是语法 −
window.moveBy(x,y)
其中,x 和 y 分别定义了水平和垂直移动窗口的值(以像素为单位)。
让我们看一个 HTML 窗口 moveBy() 方法示例 −
示例
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } </style> <body> <h1>HTML Window moveBy() Method Demo</h1> <button onclick="create()" class="btn">Create new window and then move it</button> <script> function create(){ var newWindow =window.open('','','width=150,height=150'); newWindow.moveBy(550, 200); } </script> </body> </html>
输出
点击“创建新窗口并移动它”按钮来生成一个新窗口,然后使用 moveBy() 方法移动它
广告