Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.
/ resizeend Public archive

Debounced JavaScript resize events

Notifications You must be signed in to change notification settings

porada/resizeend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

resize:end Build Status

The blend of debounced resize event with orientationchange flavor. See the demo.

Example usage

window.addEventListener('resize:end', function(event) {
  // Your callback, e.g.
  console.log(event.type);
}, false);

How it works

The resize:end (and resizeend) event is dispatched in two cases:

Browser window has finished resizing

It’s the cure for those window.onresize skips that occur every pixel as long as you keep resizing your browser’s window. Details matter. performance++, too.

Changing device orientation resizes the viewport

Switching from portrait mode into landscape (and vice versa) triggers resize:end. If rotating a device doesn’t alter its viewport dimensions (e.g. rotating it upside down), the event isn’t dispatched, because there’s simply no need to.

Browser support

Tested in the following browsers:

  • Safari 6+
  • Chrome 20+
  • Firefox 14+
  • Opera 12+
  • Internet Explorer 9+
  • Mobile Safari on iOS 6+

Feedback

Any suggestions are welcome. You can also find me on Twitter: I’m @porada.

License

Distributed under MIT license.