Posts

Showing posts with the label counter

Animated Number Counter From Zero To Value - jQuery (Javascript Animation)

<div id="shiva"><span class="count">200</span></div> <script> $('.count').each(function () {     $(this).prop('Counter',0).animate({         Counter: $(this).text()     }, {         duration: 4000,         easing: 'swing',         step: function (now) {             $(this).text(Math.ceil(now));         }     }); }); </script>