Created
July 27, 2014 18:25
-
-
Save ace4gi/b5d1e29d598d435b7200 to your computer and use it in GitHub Desktop.
animate 0 - 1 (easing)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery({count:0}).animate({count:1}, { | |
| duration: 1000, | |
| progress: function() { | |
| console.log( this.count ); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment