Skip to content

Commit

Permalink
Pulsate: Fixed duration.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Jan 14, 2009
1 parent 3741f4e commit ee28d26
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions ui/effects.pulsate.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,28 @@ $.effects.pulsate = function(o) {
// Set options
var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode
var times = o.options.times || 5; // Default # of times

var duration = o.duration ? o.duration / 2 : $.fx.speeds._default / 2;

// Adjust
if (mode == 'hide') times--;
if (el.is(':hidden')) { // Show fadeIn
el.css('opacity', 0);
el.show(); // Show
el.animate({opacity: 1}, o.duration / 2, o.options.easing);
el.animate({opacity: 1}, duration, o.options.easing);
times = times-2;
}

// Animate
for (var i = 0; i < times; i++) { // Pulsate
el.animate({opacity: 0}, o.duration / 2, o.options.easing).animate({opacity: 1}, o.duration / 2, o.options.easing);
el.animate({opacity: 0}, duration, o.options.easing).animate({opacity: 1}, duration, o.options.easing);
};
if (mode == 'hide') { // Last Pulse
el.animate({opacity: 0}, o.duration / 2, o.options.easing, function(){
el.animate({opacity: 0}, duration, o.options.easing, function(){
el.hide(); // Hide
if(o.callback) o.callback.apply(this, arguments); // Callback
});
} else {
el.animate({opacity: 0}, o.duration / 2, o.options.easing).animate({opacity: 1}, o.duration / 2, o.options.easing, function(){
el.animate({opacity: 0}, duration, o.options.easing).animate({opacity: 1}, duration, o.options.easing, function(){
if(o.callback) o.callback.apply(this, arguments); // Callback
});
};
Expand Down

0 comments on commit ee28d26

Please sign in to comment.