JSFiddle - React, Tailwind, and code Playground

by kodjoe mambi

HTML

<div style="background:red; height:2000px"></div>


<div id="counter">
<div class="counter-value" data-count="652">0 </div> Kal!!!
</div>

CSS

.counter-value {
  display: inline;
}

JavaScript

var a = 0;
$(window).scroll(function() {

  var oTop = $('#counter').offset().top - window.innerHeight;
  if (a == 0 && $(window).scrollTop() > oTop) {
    $('.counter-value').each(function() {
      var $this = $(this),
        countTo = $this.attr('data-count');
      $({
        countNum: $this.text()
      }).animate({
          countNum: countTo
        },

        {

          duration: 5000,
          easing: 'swing',
          step: function() {
            $this.text(Math.floor(this.countNum));
          },
          complete: function() {
            $this.text(this.countNum);
            //alert('finished');
          }

        });
    });
    a = 1;
  }

});