tags:

views:

127

answers:

2

I am fading a DIV slowly,

$(ele).fadeIn('slow');

How can i create a very good animation along with the fadeIn to show real animation power of jquery

+2  A: 

What kind of animation are you looking for? You could slideDown(), slideUp() or use animate() and define your own

Russ Cam
+3  A: 

You could also check out JQuery UI as this allows you to animate colours too or read this article about plugins for unforgetable user experiences.

Fermin