D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home5
/
rakcha
/
www
/
control
/
assets
/
js
/
pages
/
ui
/
Filename :
animations.js
back
Copy
$(function () { $('.js-animations').on('change', function () { var animation = $(this).val(); $('.js-animating-object').animateCss(animation); }); }); //Copied from https://github.com/daneden/animate.css $.fn.extend({ animateCss: function (animationName) { var animationEnd = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend'; $(this).addClass('animated ' + animationName).one(animationEnd, function() { $(this).removeClass('animated ' + animationName); }); } });