|
@@ -61,7 +61,7 @@ const Easings = {
|
|
|
|
|
|
Linear:
|
|
|
{
|
|
|
- ease: function(x, t, b, c, d)
|
|
|
+ ease: function(t, b, c, d)
|
|
|
{
|
|
|
return b + (c * t / d);
|
|
|
}
|
|
@@ -69,15 +69,17 @@ const Easings = {
|
|
|
|
|
|
Quad:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return c * (t /= d) * t + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return -c * (t /= d) * (t - 2) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d / 2) < 1) return c / 2 * t * t + b;
|
|
|
return -c / 2 * ((--t) * (t - 2) - 1) + b;
|
|
@@ -86,15 +88,17 @@ const Easings = {
|
|
|
|
|
|
Cubic:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return c * (t /= d) * t * t + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return c * ((t = t / d - 1) * t * t + 1) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
|
|
|
return c / 2 * ((t -= 2) * t * t + 2) + b;
|
|
@@ -103,15 +107,17 @@ const Easings = {
|
|
|
|
|
|
Quart:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return c * (t /= d) * t * t * t + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return -c * ((t = t / d - 1) * t * t * t - 1) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
|
|
|
return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
|
|
@@ -120,15 +126,17 @@ const Easings = {
|
|
|
|
|
|
Quint:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return c * (t /= d) * t * t * t * t + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return c * ((t = t / d - 1) * t * t * t * t + 1) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
|
|
|
return c / 2 * ((t -= 2) * t * t * t * t + 2) + b;
|
|
@@ -137,15 +145,17 @@ const Easings = {
|
|
|
|
|
|
Sine:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return -c * Math.cos(t / d * (Math.PI / 2)) + c + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return c * Math.sin(t / d * (Math.PI / 2)) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b;
|
|
|
}
|
|
@@ -153,15 +163,17 @@ const Easings = {
|
|
|
|
|
|
Expo:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if (t == 0) return b;
|
|
|
if (t == d) return b + c;
|
|
@@ -172,15 +184,17 @@ const Easings = {
|
|
|
|
|
|
Circ:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
return c * Math.sqrt(1 - (t = t / d - 1) * t) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
|
|
|
return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b;
|
|
@@ -189,7 +203,7 @@ const Easings = {
|
|
|
|
|
|
Elastic:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
var s = 1.70158;
|
|
|
var p = 0;
|
|
@@ -205,7 +219,8 @@ const Easings = {
|
|
|
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;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
var s = 1.70158;
|
|
|
var p = 0;
|
|
@@ -221,7 +236,8 @@ const Easings = {
|
|
|
else var s = p / (2 * Math.PI) * Math.asin(c / a);
|
|
|
return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
var s = 1.70158;
|
|
|
var p = 0;
|
|
@@ -242,17 +258,19 @@ const Easings = {
|
|
|
|
|
|
Back:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d, s)
|
|
|
+ easeIn: function(t, b, c, d, s)
|
|
|
{
|
|
|
if (s == undefined) s = 1.70158;
|
|
|
return c * (t /= d) * t * ((s + 1) * t - s) + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d, s)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d, s)
|
|
|
{
|
|
|
if (s == undefined) s = 1.70158;
|
|
|
return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d, s)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d, s)
|
|
|
{
|
|
|
if (s == undefined) s = 1.70158;
|
|
|
if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
|
|
@@ -262,11 +280,12 @@ const Easings = {
|
|
|
|
|
|
Bounce:
|
|
|
{
|
|
|
- easeIn: function(x, t, b, c, d)
|
|
|
+ easeIn: function(t, b, c, d)
|
|
|
{
|
|
|
- return c - Easings.Bounce.easeOut(x, d - t, 0, c, d) + b;
|
|
|
+ return c - Easings.Bounce.easeOut(d - t, 0, c, d) + b;
|
|
|
},
|
|
|
- easeOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeOut: function(t, b, c, d)
|
|
|
{
|
|
|
if ((t /= d) < (1 / 2.75))
|
|
|
return c * (7.5625 * t * t) + b;
|
|
@@ -277,10 +296,11 @@ const Easings = {
|
|
|
else
|
|
|
return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
|
|
|
},
|
|
|
- easeInOut: function(x, t, b, c, d)
|
|
|
+
|
|
|
+ easeInOut: function(t, b, c, d)
|
|
|
{
|
|
|
- if (t < d / 2) return Easings.Bounce.easeIn(x, t * 2, 0, c, d) * .5 + b;
|
|
|
- return Easings.Bounce.easeOut(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b;
|
|
|
+ if (t < d / 2) return Easings.Bounce.easeIn(t * 2, 0, c, d) * .5 + b;
|
|
|
+ return Easings.Bounce.easeOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
|
|
|
}
|
|
|
},
|
|
|
}
|