目录

window resizeBy()

示例1

打开一个新窗口,然后调整(增加)宽度和高度:

function openWin() {
  myWindow = window.open("", "", "width=100, height=100");
}

function resizeWin() {
  myWindow.resizeBy(250, 250);
}
亲自试一试 »

下面有更多示例。


描述

这个resizeBy()方法将窗口大小调整指定的量。


语法

resizeBy( width, height)

参数

Parameter Description
width Required.
A positive or a negative number.
The number of pixels to resize the width by.
height Required.
A positive or a negative number.
The number of pixels to resize the height by.

返回值

没有任何


更多示例

打开一个新窗口,宽度减少 50px,高度增加 50px:

myWindow.resizeBy(-50, 50);
亲自试一试 »

将 resizeBy() 与 resizeTo() 一起使用:

function resizeWinTo() {
  myWindow.resizeTo(800, 600);
  myWindow.focus();
}

function resizeWinBy() {
  myWindow.resizeBy(-100, -50);
}
亲自试一试 »

浏览器支持

resizeBy()所有浏览器都支持:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes