observe-resize

1.1.3 • Public • Published

observe-resize stability

npm version build status downloads js-standard-style

Trigger a callback when an element is resized. Adapted from simple-element-resize-detector.

Usage

var observeResize = require('observe-resize')
var html = require('bel')
 
var el = html`<div>hello planet</div>`
document.body.appendChild(el)
 
// observers should only be added _after_ the element is rendered on the DOM,
// else it displeases the browser emperors and they _will_ warn you
var stop = observeResize(el, function () {
  console.log('resized')
  stop()
})

API

stopObserving = observeResize(el, callback)

Observe resize events on the specified element. This event is throttled by requestAnimationFrame. In most cases you'd probably still want to use a debounce function to throttle changes, as resize events can be rather volatile otherwise.

stopObserving

Unbind the observer from the element.

Installation

$ npm install observe-resize

See Also

Similar Packages

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i observe-resize

Weekly Downloads

3

Version

1.1.3

License

MIT

Last publish

Collaborators

  • yoshuawuyts