I have two animations that I would like to group as one animation so that the easing will carry over and continue into the next animation. The second animation needs to start after the first one has finished. This is what I have so far, but the easing starts over when the second animation begins (which is what I would have expected).

$progressBar.animate({width: progressBarWidth + '%'}, barAnimationSpeed, 'swing', function(){
    $overGoalBar.animate({width: overGoalBarWidth + '%'}, barAnimationSpeed, 'swing', function(){});
});

Here's an example of how it works right now.

How can I group these animations into one easing animation?

link|improve this question

70% accept rate
Have you tried not using a callback? – Ivan Sep 16 '11 at 16:57
What do you mean? I specifically need the second animation to start once the first has finished. – Andrew Sep 16 '11 at 16:59
Ah, I see what you mean now. I'm not having that problem in my JSFiddle: jsfiddle.net/dkBMA/1 – Ivan Sep 16 '11 at 17:02
1  
I think you can simulate this by using jQuery Easing plugin, which enables more advanced easing effects: this way you can use In and Out effects achieving something like this jsfiddle.net/yW6jK/3 – Jose Faeti Sep 16 '11 at 17:31
1  
I think you are talking about the first one easing in and second one easing in with same acceleration as the first one had without losing acceleration. You are typing to implement two separate objects with one increasing line-looking but has different color in parts. – InspiredJW Sep 16 '11 at 17:32
show 10 more comments
feedback

3 Answers

If you want to demonstrate dynamically created percentage value of progress bar with easing effect.

I would use server created background Image

ex) Using GD Library in PHP

and set that image as background of one DIV tag in CSS.

#progressBar { background-img('Dynamically-created-image.jpg'); }

Lastly just animate that one DIV tag once.

If I have understood you correctly, this idea might work.

link|improve this answer
Yeah, that might work, but then the server has to generate the background images, and it's much simpler to animate the width of the div than it is to generate custom background images for every progress bar. – Andrew Sep 16 '11 at 17:47
@Andrew Then you have to implement own easing effect function in jQuery or javascript that when the first one accelerates and ends, it should return its last acceleration without any decceleration and give that acceleration value to second one as starting acceleration parameter. – InspiredJW Sep 16 '11 at 17:52
feedback

Here is a great online tool for writing a custom easing function...

http://www.timotheegroleau.com/Flash/experiments/easing_function_generator.htm

Also, here is more information in general about easing... you do not need the easing plugin if you have an easing function. From the links contained within, you can see a demo of each and then compare to the easing function behind it...

How can I add aceleration to this jQuery animation?

link|improve this answer
feedback

Have you tried using linear?

$('#progressBar').animate({width: 50 + '%'}, 2500, 'linear', function(){
    $('#overGoalBar').animate({width: 49 + '%'}, 2500, 'linear', function(){});
});

It's note exactly chaining two animations together, but it does smooth it out.

http://jsfiddle.net/dkBMA/11/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.