A lot of the jQuery (and jQuery UI) functionality allows for animations to occur when showing/hiding elements. One of the irksome things about their otherwise-thorough web site is their lack of definitions of the animation keywords you can use. I'm aware of slide
, fadeIn
, and fadeOut
. I know I've used others in the past as well. Is there a definitive list of options somewhere?

- 13,218
- 3
- 40
- 60

- 3,769
- 6
- 40
- 63
-
+1, for a question I've meant to ask before, but never remembered to =) – David Thomas Aug 20 '10 at 19:25
-
@Etdashou's answer is most relevant as of Jul 2015. – rohithpr Jul 16 '15 at 16:12
5 Answers
There's also the jQuery UI effects in addition to the standard jQuery effects.
The only list I could find of them were on the demo page: http://jqueryui.com/docs/effect/
This includes stuff like slide, shake, puff, blind, etc...
This main landing page on the jQuery UI Effects page has links to demos of some of the jQuery animation effects (show, hide), but not all (like fade in/out) and also links to the jQuery UI effects.
But overall, I don't think there is a comprehensive jQuery / jQueryUI list.

- 28,421
- 8
- 67
- 102
I really like this page: http://jqueryui.com/resources/demos/effect/easing.html
And as previously said, this is also useful: http://jqueryui.com/effect/

- 5,095
- 1
- 17
- 15
Found a good resource on this topic...
http://gsgd.co.uk/sandbox/jquery/easing/
This not only offers several easing options but also a test area where you can explore several options.