Sha256: 4d7c2f04472aca6432b1e35140b9e1923d6b953e9814d3a037b88cfb14662b9a

Contents?: true

Size: 1.19 KB

Versions: 42

Compression:

Stored size: 1.19 KB

Contents

/*
 * jQuery UI Effects Pulsate @VERSION
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Pulsate
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function( $, undefined ) {

$.effects.pulsate = function(o) {
	return this.queue(function() {
		var elem = $(this),
			mode = $.effects.setMode(elem, o.options.mode || 'show');
			times = ((o.options.times || 5) * 2) - 1;
			duration = o.duration ? o.duration / 2 : $.fx.speeds._default / 2,
			isVisible = elem.is(':visible'),
			animateTo = 0;

		if (!isVisible) {
			elem.css('opacity', 0).show();
			animateTo = 1;
		}

		if ((mode == 'hide' && isVisible) || (mode == 'show' && !isVisible)) {
			times--;
		}

		for (var i = 0; i < times; i++) {
			elem.animate({ opacity: animateTo }, duration, o.options.easing);
			animateTo = (animateTo + 1) % 2;
		}

		elem.animate({ opacity: animateTo }, duration, o.options.easing, function() {
			if (animateTo == 0) {
				elem.hide();
			}
			(o.callback && o.callback.apply(this, arguments));
		});

		elem
			.queue('fx', function() { elem.dequeue(); })
			.dequeue();
	});
};

})(jQuery);

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
spiderfw-1.0.1 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-1.0.0 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.39 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.38 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.37 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.35 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.34 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.33 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.32 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.31 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.30 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.29 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.28 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.27 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.26 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.26.pre1 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.25 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.24 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.23 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js
spiderfw-0.6.22 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.pulsate.js