2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Pulsate @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Pulsate Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Pulsates an element n times by changing the opacity to zero and back.
|
|
|
|
//>>docs: http://api.jqueryui.com/pulsate-effect/
|
|
|
|
//>>demos: http://jqueryui.com/effect/
|
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
( function( factory ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
2015-03-18 14:39:12 +00:00
|
|
|
define( [
|
2013-07-12 16:40:48 +00:00
|
|
|
"jquery",
|
2015-07-15 02:01:41 +00:00
|
|
|
"../version",
|
|
|
|
"../effect"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2015-03-18 14:39:12 +00:00
|
|
|
}( function( $ ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
return $.effects.define( "pulsate", "show", function( options, done ) {
|
|
|
|
var element = $( this ),
|
|
|
|
mode = options.mode,
|
2011-06-21 05:23:52 +00:00
|
|
|
show = mode === "show",
|
|
|
|
hide = mode === "hide",
|
2012-12-26 13:35:42 +00:00
|
|
|
showhide = show || hide,
|
2011-03-27 11:30:40 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
// Showing or hiding leaves off the "last" animation
|
|
|
|
anims = ( ( options.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),
|
|
|
|
duration = options.duration / anims,
|
2011-06-21 05:23:52 +00:00
|
|
|
animateTo = 0,
|
2012-12-26 13:35:42 +00:00
|
|
|
i = 1,
|
|
|
|
queuelen = element.queue().length;
|
2009-11-16 02:49:36 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
if ( show || !element.is( ":visible" ) ) {
|
|
|
|
element.css( "opacity", 0 ).show();
|
2011-06-21 05:23:52 +00:00
|
|
|
animateTo = 1;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
// Anims - 1 opacity "toggles"
|
|
|
|
for ( ; i < anims; i++ ) {
|
|
|
|
element.animate( { opacity: animateTo }, duration, options.easing );
|
2011-06-21 05:23:52 +00:00
|
|
|
animateTo = 1 - animateTo;
|
|
|
|
}
|
2011-05-10 21:25:08 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
element.animate( { opacity: animateTo }, duration, options.easing );
|
2011-03-27 11:30:40 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
element.queue( done );
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$.effects.unshift( element, queuelen, anims + 1 );
|
2015-03-18 14:39:12 +00:00
|
|
|
} );
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
} ) );
|