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
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
What kind of animation are you looking for? You could slideDown(), slideUp() or use animate() and define your own
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.