Skip to content

Instantly share code, notes, and snippets.

@sxidsvit
Last active May 5, 2016 16:39
Show Gist options
  • Select an option

  • Save sxidsvit/4d29badb666b999bbf301b0cfbbfb2b6 to your computer and use it in GitHub Desktop.

Select an option

Save sxidsvit/4d29badb666b999bbf301b0cfbbfb2b6 to your computer and use it in GitHub Desktop.
jQuery animated number counter from zero to value (stackoverflow.com)
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