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

39,448

Solution 1

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

Solution 2

600ms, 400ms and 200ms respectively.

Source

Solution 3

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

Share:
39,448
Matt Huggins
Author by

Matt Huggins

Currently developing with Ruby (Rails) and Javascript (React/Redux). Variety of past & present experience includes mobile development (React Native, Android, Cordova), SQL, Java, PHP, C/C++, etc.

Updated on July 25, 2020

Comments

  • Matt Huggins
    Matt Huggins almost 4 years

    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?