// With Animate.css$(...).cssAnimate('animated bounce');// Chaining animations with promise$(...).cssAnimate('animated bounce').then(function(elm){return$(elm).cssAnimate('animated flash');}).then(function(){return$.when($(...).cssAnimate('animated fadeIn'),$(...).cssanimate('animated fadeOut'));});// For CSS animation that shows element,// add `display: {show || 'inline-block'}` right before animation starts$(hiddenElement).cssAnimate('animated fadeIn',{show: true});// For CSS animation that hides element,// add `display: none` right after animation ends$(visibleElement).cssAnimate('animated fadeOut',{hide: true});
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters