Sha256: c4d7348229450d1593634a1b95e6cff803234af13b2eebdd8fc41839793fb5cb
Contents?: true
Size: 1.09 KB
Versions: 93
Compression:
Stored size: 1.09 KB
Contents
(function ($, window, document, undefined) { 'use strict'; $.fn.animateCSS = function (effect, delay, callback) { return this.each(function () { var $this = $(this), animated = "animated", hidden = "hidden", transitionEnd = "webkitAnimationEnd oanimationend msAnimationEnd animationend", visibility = "visibility", visible = "visible"; function run() { $this.addClass( animated + " " + effect) if ($this.css( visibility ) === hidden) { $this.css( visibility, visible) } if ($this.is(":" + hidden)) { $this.show() } $this.bind( transitionEnd, function () { $this.removeClass(animated + " " + effect) if (typeof callback === "function") { callback.call(this) $this.unbind( transitionEnd ) } }) } if (!delay || typeof delay === "function") { callback = delay; run() } else { setTimeout(run, delay) } }) } })(jQuery, window, document);
Version data entries
93 entries across 93 versions & 2 rubygems