I am Andy
I am Andy

Reputation: 161

Example of jquery easing plugin

easeOutExpo: function (x, t, b, c, d) {
        return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
    }

At this line of code on jquery easin plugin, How we want to know the value if x, t, b, c, d in parentheses.I'm just wanna know What there are doing..?

Upvotes: 0

Views: 220

Answers (1)

Adam Merrifield
Adam Merrifield

Reputation: 10407

At the top of the script there is a line commented out that says:

// t: current time, b: begInnIng value, c: change In value, d: duration

Upvotes: 2

Related Questions