Skip to content

Instantly share code, notes, and snippets.

@Robert-IMT
Last active November 8, 2021 21:52
Show Gist options
  • Select an option

  • Save Robert-IMT/ae176be4601b898c8223 to your computer and use it in GitHub Desktop.

Select an option

Save Robert-IMT/ae176be4601b898c8223 to your computer and use it in GitHub Desktop.
jQuery animated number counter from Zero to value
$('.count').each(function () {
$(this).prop('Counter',0).animate({
Counter: $(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment