добавление плагина counterup в приложение jquery -steps - PullRequest
0 голосов
/ 05 августа 2020

Я использую jQuery -шаги в своем приложении и хочу добавить противодействие к последнему шагу. счетчик работает при загрузке страницы не при активном последнем шаге это счетчик jquery код

      jQuery(document).ready(function () {
  var a = 0;


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

          {      

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

          });
      });
      a = 1;
    }      


  });
...