Skip to content

Commit

Permalink
Merge pull request #69 from juliangarnier/v1.1.1
Browse files Browse the repository at this point in the history
V1.1.1
  • Loading branch information
juliangarnier authored Sep 5, 2016
2 parents c022c7b + a5cf461 commit bb31d67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions anime.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
eases['easeIn' + name] = easeIn;
eases['easeOut' + name] = function(t, m) { return 1 - easeIn(1 - t, m); };
eases['easeInOut' + name] = function(t, m) { return t < 0.5 ? easeIn(t * 2, m) / 2 : 1 - easeIn(t * -2 + 2, m) / 2; };
eases['easeOutIn' + name] = function(t, m) { return t < 0.5 ? (1 - easeIn(1 - 2 * t, m)) / 2 : (easeIn(t * 2 - 1, m) + 1) / 2; };
});
eases.linear = function(t) { return t; };
return eases;
Expand Down
32 changes: 16 additions & 16 deletions anime.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb31d67

Please sign in to comment.