jquery-ui/ui/jquery.effects.pulsate.js

53 lines
1.1 KiB
JavaScript
Raw Normal View History

/*
* jQuery UI Effects Pulsate @VERSION
*
2011-01-17 14:13:18 +00:00
* 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 ) {
2008-06-04 02:34:33 +00:00
2011-03-06 23:45:43 +00:00
$.effects.pulsate = function( o ) {
return this.queue( function() {
var elem = $( this ),
mode = $.effects.setMode( elem, o.mode || 'show' ),
times = ( ( o.times || 5 ) * 2 ) - 1,
duration = o.duration / 2,
isVisible = elem.is( ':visible' ),
animateTo = 0,
i;
2011-03-06 23:45:43 +00:00
if ( !isVisible ) {
elem.css('opacity', 0).show();
animateTo = 1;
}
2011-03-06 23:45:43 +00:00
if ( ( mode == 'hide' && isVisible ) || ( mode == 'show' && !isVisible ) ) {
times--;
}
2009-01-22 13:10:18 +00:00
2011-03-06 23:45:43 +00:00
for ( i = 0; i < times; i++ ) {
elem.animate({
opacity: animateTo
}, duration, o.easing );
animateTo = ( animateTo + 1 ) % 2;
}
2011-03-06 23:45:43 +00:00
elem.animate({
opacity: animateTo
}, duration, o.easing, function() {
if (animateTo == 0) {
elem.hide();
}
(o.complete && o.complete.apply(this, arguments));
2011-03-06 23:45:43 +00:00
}).dequeue();
});
};
})(jQuery);