Skip to content

Instantly share code, notes, and snippets.

@shehabkhan013
Created December 17, 2017 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shehabkhan013/4d34d238e1b4eab4235b13932f4463d6 to your computer and use it in GitHub Desktop.
Save shehabkhan013/4d34d238e1b4eab4235b13932f4463d6 to your computer and use it in GitHub Desktop.
$('.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