resize-event
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

resize-event

Detect resize on an element without polling or iframes

build status NPM version

If the browser supports ResizeObserver this will use that otherwise it will fallback to a MutationObserver to detect changes to the style attribute of an element and then compares the width/height to check if it has changed.

A polyfill is provided for MutationObserver which will then use polling on really old browsers.

usage

import onResize from "resize-event"

// Create or select an element, must be in the DOM
const element = document.createElement('div')
document.body.appendChild(element)

// Bind the event
const observer = onResize(element, () => {
  console.log('element was resized', element.offsetWidth, element.offsetHeight)
})

// Trigger the event
element.style.width = '500px'

// Later disconnect the event
observer.disconnect()

install

npm install resize-event --save

license

(c) 2020 Kyle Robinson Young. MIT License

Readme

Keywords

Package Sidebar

Install

npm i resize-event

Weekly Downloads

312

Version

2.0.1

License

MIT

Unpacked Size

5.33 kB

Total Files

7

Last publish

Collaborators

  • shama