The ResizeObserver constructor creates a new ResizeObserver object, which can be used to report changes to the content or border box of an Element or the bounding box of an SVGElement.
Syntax
var ResizeObserver = new ResizeObserver(callback)
Parameters
callback- The function called whenever an observed resize occurs. The function is called with two parameters:
entries- An array of
ResizeObserverEntryobjects that can be used to access the new dimensions of the element after each change. observer- A reference to the
ResizeObserveritself, so it will definitely be accessible from inside the callback, should you need it. This could be used for example to automatically unobserve the observer when a certain condition is reached, but you can omit it if you don't need it.
The callback will generally follow a pattern along the lines of:
function(entries, observer) { for (let entry of entries) { // Do something to each entry // and possibly something to the observer itself } }
Examples
The following snippet is taken from the resize-observer-text.html (see source) example:
const resizeObserver = new ResizeObserver(entries => {
for (let entry of entries) {
if(entry.contentBoxSize) {
h1Elem.style.fontSize = Math.max(1.5, entry.contentBoxSize.inlineSize/200) + 'rem';
pElem.style.fontSize = Math.max(1, entry.contentBoxSize.inlineSize/600) + 'rem';
} else {
h1Elem.style.fontSize = Math.max(1.5, entry.contentRect.width/200) + 'rem';
pElem.style.fontSize = Math.max(1, entry.contentRect.width/600) + 'rem';
}
}
});
resizeObserver.observe(divElem);
Specifications
| Specification | Status | Comment |
|---|---|---|
| Resize Observer The definition of 'ResizeObserver' in that specification. |
Editor's Draft | Initial definition. |
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.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
ResizeObserver() constructor | Chrome Full support 64 | Edge Full support 79 | Firefox Full support 69 | IE No support No | Opera Full support 51 | Safari Full support 13.1 | WebView Android Full support 64 | Chrome Android Full support 64 | Firefox Android No support No | Opera Android Full support 47 | Safari iOS Full support 13.4 | Samsung Internet Android Full support 9.0 |
Legend
- Full support
- Full support
- No support
- No support
