Last active
May 5, 2016 16:39
-
-
Save sxidsvit/4d29badb666b999bbf301b0cfbbfb2b6 to your computer and use it in GitHub Desktop.
jQuery animated number counter from zero to value (stackoverflow.com)
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
| HTML | |
| <span class="Single">150</span> | |
| JQUERY | |
| jQuery({ Counter: 0 }).animate({ Counter: $('.Single').text() }, { | |
| duration: 1000, | |
| easing: 'swing', | |
| step: function () { | |
| $('.Single').text(Math.ceil(this.Counter)); | |
| } | |
| }); | |
| // Источник - http://stackoverflow.com/questions/23006516/jquery-animated-number-counter-from-zero-to-value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment