Easing functions in jQuery

Viewed 10680

This question sounds too trivial, but I could not find the answer anywhere.

I was browsing through the jQuery docs and saw some signatures like this.

.show( [duration,] [easing,] [callback] )

and

.animate( properties, [duration,] [easing,] [complete] )

At both places, easing is defined as

easing A string indicating which easing function to use for the transition.

But I don't see any documentation showing all the easing functions in jQuery.
From where will I get all the easing functions for jQuery?

2 Answers
Related