jquery.counterup is a jQuery plugin that animates a number from zero (counting up towards it). It supports counting up:. jquery counterup
- integers
12345
- floats
0.1234
- formatted numbers
1,234,567.00
- time
21:45:00
<!-- Plugin Js -->
<script src="assets/bundles/jquerycounterup.bundle.js"></script>
<!-- HTML -->
<span class="counter">1,540</span>
<span class="counter">1,540.5</span>
<span><span class="counter">1,540.5</span>K</span>
<!-- Jquery Page Js -->
<script>
jQuery(document).ready(function($) {
$('.counter').counterUp({ delay: 20, time: 1500 });
});
</script>