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

JqueryAnimationEffectsJquery Effects

Jquery Problem Overview


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?

Jquery Solutions


Solution 1 - Jquery

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

Solution 2 - Jquery

600ms, 400ms and 200ms respectively.

Source

Solution 3 - Jquery

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMatt HugginsView Question on Stackoverflow
Solution 1 - JqueryNikita RybakView Answer on Stackoverflow
Solution 2 - JqueryGazlerView Answer on Stackoverflow
Solution 3 - JqueryMaksim Vi.View Answer on Stackoverflow