ianstormtaylor / after-transition

Fire a callback after a transition or fire immediately if the browser doesn't support them

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

after-transition

Fire a callback after a transition or immediately if the browser does not support transitions. If the element does not have a transition property it will also fire immediately.

Installation

$ component install anthonyshort/after-transition

API

var afterTransition = require('after-transition');

afterTransition(el, function(){
  // Do things when the transition has finished
  // This will fire immediately for IE
});

afterTransition.once(el, function(){
  // Same as above but will only fire once
});

License

MIT

About

Fire a callback after a transition or fire immediately if the browser doesn't support them


Languages

Language:JavaScript 100.0%