Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How many milliseconds do "slow", "normal", and "fast" represent in jQuery?

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?

like image 397
Matt Huggins Avatar asked Sep 17 '10 19:09

Matt Huggins


3 Answers

600, 400 and 200, respectively "slow", "normal", "fast". All in the docs

like image 90
Nikita Rybak Avatar answered Oct 05 '22 07:10

Nikita Rybak


600ms, 400ms and 200ms respectively.

Source

like image 24
Gazler Avatar answered Oct 05 '22 06:10

Gazler


I would be original and answer 600, 400, 200 respectively. Since higher number of milliseconds means slower speed =) All in the source

like image 31
Maksim Vi. Avatar answered Oct 05 '22 08:10

Maksim Vi.