Just found the illustration (graphical) of jQuery Easing plugin http://james.padolsey.com/demos/jquery/easing/

What does these graphs exactly represent.

I tried to work/analyze the Easing Plugin several times, but I never understand how it really functions

Can someone explain me how to figure it out

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Think of it this way...

  • The bottom left corner of the box is the starting point of the animation.
  • The right side is the end point of the animation. The higher up, the further from the starting point.
  • The length of the bottom (or top) displays how much of the total animation time has passed.
  • The easing function determines how to animate the element within the distance over the set amount of animation time between the two points, or rate which is distance/time.

So, if you see a horizontal line plotted or a curve approach a horizontal line, then there won't be any animation (or minimal) as the distance hasn't changed over time.

And the steeper the line (up or down), the faster the element is moving across the distance.

link|improve this answer
feedback

It's the initial velocity, middle velocity and final velocity of an animation.

link|improve this answer
feedback

Read the paragraph - it explains what the graphs represent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.