jQuery allows use of the string values "slow", "normal", and "fast" in animations (e.g.: $('#example').fadeOut('slow');). How many milliseconds do each of these values represent?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
600, 400 and 200, respectively "slow", "normal", "fast". All in the docs |
|||||||||||
|
|
600ms, 400ms and 200ms respectively. |
|||||||||||||||||
|
|
I would be original and answer 600, 400, 200 respectively. Since higher number of milliseconds means slower speed =) All in the source |
|||||
|

normalis a special arguement. But since you supplied, other than 'slow' / 'flow' , it considered 400. – Jashwant Jul 25 '12 at 5:58