Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6862173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:37:44+00:00 2026-05-27T02:37:44+00:00

What is meant by easing function in the context of animation. It seems that

  • 0

What is meant by easing function in the context of animation. It seems that dojo, jquery, silverlight, flex and other UI systems have the notion of easing function. I could not locate a good explanation of easing functions? Can anyone explain the concept of easing functions, or point a good explanation of them, I am interested in the concept not in the specific details of a framework?

Is easing strictly used for location or is it general and can be applied to any property of an object?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T02:37:45+00:00Added an answer on May 27, 2026 at 2:37 am

    An easing function is usually a function that describes the value of a property given a percentage of completeness. Different frameworks use slightly different variations, but the concept is easy to grasp once you get the idea, but it’s probably best to look a few examples.

    First lets look at the interface that all our easing functions will abide by.

    Our easing functions will take several arguments:

    • percentComplete: (0.0 to 1.0).
    • elapsedTime: The number of milliseconds the animation has been running
    • startValue: the value to start at (or the value when the percent complete is 0%)
    • endValue: the value to end at (or the value when the percent complete is 100%)
    • totalDuration: The total desired length of the animation in milliseconds

    And will return a number which represents the value the property should be set to.

    Note: this is the same signature that jQuery uses for its easing functions, which I’ll be borrowing for examples.

    The easiest to understand is a linear ease:

    var linear = function(percent,elapsed,start,end,total) {
        return start+(end-start)*percent;
    }
    

    And now to put this to use:

    Lets say we had an animation that was going to go for 1000 milliseconds and was supposed to start at 0 and end at 50. Passing those values into our easing function should tell us what the actual value should be:

    linear(0, 0, 0,50, 1000)        // 0
    linear(0.25, 250, 0, 50, 1000)  // 12.5
    linear(0.5, 500, 0, 50, 1000)   // 25
    linear(0.75, 750, 0, 50, 1000)  // 37.5
    linear(1.0, 1000, 0, 50, 1000)  // 50
    

    This is a pretty straight forward (no pun intended) tween. It is a simple linear interpolation. If you were to graph value vs time, it would be a straight line:

    Linear ease

    Lets take a look at a bit more complicated easing function, a quadratic ease in:

    var easeInQuad = function (x, t, b, c, d) {
        return c*(t/=d)*t + b;
    }
    

    And lets look at the same results, using the same inputs as before:

    easeInQuad(0, 0, 0, 50, 1000)      // 0
    easeInQuad(0.25, 250, 0, 50, 1000) // 3.125
    easeInQuad(0.5, 500, 0, 50, 1000)  // 12.5
    easeInQuad(0.75, 750, 0, 50, 1000) // 28.125
    easeInQuad(1, 1000, 0, 50, 1000)   // 50
    

    Notice the values are very different than our linear ease. It starts out very slow, then accelerates to its ending point. At 50% completion of the animation it has only made it to a value of 12.5, which is one quarter of the actual distance between the start and end values we have specified.

    If we were to graph this function it would look something like this:

    Quad-Ease-In

    Now lets take a look at a basic ease-out:

    var easeOutQuad = function (x, t, b, c, d) {
        return -c *(t/=d)*(t-2) + b;
    };
    

    This essentially does the “opposite” acceleration curve of an ease in. It starts out fast and then decelerates to its ending value:

    Ease out

    And then there are functions that ease both in and out:

    var easeInOutQuad = function (x, t, b, c, d) {
        if ((t/=d/2) < 1) return c/2*t*t + b;
        return -c/2 * ((--t)*(t-2) - 1) + b;
    };
    

    EaseInOut

    This function will start out slow and end slow, reaching its maximum velocity in the middle.

    There are a bunch of easing/interpolations that you can use: Linear, Quadradic, Cubic, Quart, Quint, Sine. And there are specialty easing functions like Bounce and elastic, which have their own.

    For example, an elastic ease in:

    var easeInElastic = function (x, t, b, c, d) {
        var s=1.70158;var p=0;var a=c;
        if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
        if (a < Math.abs(c)) { a=c; var s=p/4; }
        else var s = p/(2*Math.PI) * Math.asin (c/a);
        return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
    },
    

    Elastic ease in

    Perhaps somebody else can explain the actual math part behind the interpolation, because honestly I’m not a math wiz. But that’s the basic principle of the easing functions themselves.

    When you start a tween/animation, the animation engine remembers the start and end values you want. Then each time it updates, its figures out of how much time has passed. It call the supplied easing function with the values to figure out the value the property should be set to. As long as all of the easing functions implement the same signature, they can be swapped out with ease, and the core animation engine doesn’t have to know difference. (Which makes for an excellent separation of concerns).

    You’ll notice that I’ve avoided talking about x and y positions explicitly, because easing doesn’t have anything specifically to do with position per se. An easing function just defines a transition between a start and end values. Those could be x coordinates, or a color, or the transparency of an object.

    And in fact, in theory, you could apply different easing function to interpolate for different properties. Hopefully this helps shed some light on the basic idea.

    And here is a really cool example (that uses a slightly different signature, but is the same principle) to play with to get the idea of how easing relates to position.


    Edit

    Here is a little jsFiddle I threw together to demonstrate some of the basic usages in javascript. Notice that the top property is tweened using bounce, and the left property is tweened using a quad. Use the slider to simulate the render loop.

    Since all the functions in the easing object have the same signature, you can swap any of them out for each other. Right now most of these things are all hard-coded (things like start and end values, the tween functions that are used and the length of the animation), but in a real-world example of a animation helper, you would want to pass in the following properties:

    • The property to be changed
    • The start value (or if left undefined then use its current value)
    • The end value
    • The length the animation should be
    • The reference to the tweening function you want to use.

    The animation engine would keep track of these settings for the duration of the animation and during every update cycle, it would use the tweening argument to calculate the properties new value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a div square and given I already have a touchmove function on that
Basically this function is meant to store the height value of the element that
When you have an Easing for an animation, the animation follows the equation of
I have a simple function going here. import fl.transitions.Tween; import fl.transitions.easing.*; function goBack (e:MouseEvent):void{
[i meant to ask this question on StackOverflow...] I have been using VisualSVN Server
Boost is meant to be the standard non-standard C++ library that every C++ user
This isn't meant as a troll or flamebait or anything like that. I've been
What is meant by the Resolution free application, As I have discussed it with
I thought after delete meant that the trigger is not fired until after the
I have a very basic regular expression that I just can't figure out why

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.