Skip to content

Instantly share code, notes, and snippets.

@joshapgar
Created April 13, 2020 13:25
Show Gist options
  • Save joshapgar/bfce40f942d15d29b13b28bd0a78b933 to your computer and use it in GitHub Desktop.
Save joshapgar/bfce40f942d15d29b13b28bd0a78b933 to your computer and use it in GitHub Desktop.
$('.section-7-products-number').each(function () {
$(this).prop('Counter',0).animate({
Counter: $(this).attr('data-stop')
}, {
duration: 2500,
easing: 'easeInOutQuart',
step: function (now) {
now = Number(Math.ceil(now)).toLocaleString('en');
$(this).text(now);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment