Nossos voluntários ainda não traduziram este artigo para o Português (do Brasil). Junte-se a nós e ajude-nos a fazer o trabalho!
Você também pode ler o artigo em English (US).
The Window.resizeTo()
method dynamically resizes the window.
Syntax
window.resizeTo(aWidth, aHeight)
Parameters
aWidth
is an integer representing the newouterWidth
in pixels (including scroll bars, title bars, etc).aHeight
is an integer value representing the newouterHeight
in pixels (including scroll bars, title bars, etc).
Example
This function resizes the window so that it takes up one quarter of the available screen. See the Screen.availWidth
and Screen.availHeight
properties.
function quarter() { window.resizeTo( window.screen.availWidth / 2, window.screen.availHeight / 2 ); }
Specification
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'window.resizeTo()' in that specification. |
Working Draft |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome Full support Yes | Edge ? | Firefox
Full support
Yes
| IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
- See implementation notes.
- See implementation notes.