We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 803ad3f commit b2f602fCopy full SHA for b2f602f
MojoJS.animation.js
@@ -8,8 +8,8 @@
8
* GitHub : https://github.com/scottcgi/MojoJS-Animation
9
*
10
* Since : 2010-05-16
11
- * Update : 2020-2-2
12
- * Version: 2.0.3
+ * Update : 2021-8-17
+ * Version: 2.1
13
*/
14
15
(function(window) {
@@ -620,7 +620,7 @@
620
isQueue : true,
621
complete : null,
622
args : null,
623
- easing : "sineOut",
+ easing : "smooth",
624
steps : null,
625
delay : 0,
626
id : "",
@@ -725,6 +725,10 @@
725
return time;
726
},
727
728
+ smooth: function(time) {
729
+ return time * time * (3.0 - 2.0 * time);
730
+ },
731
+
732
733
quadraticIn: function(time) {
734
return time * time;
0 commit comments