How to add Counter on multiple text












0















I have a multiple Pie chart that has text inside it to show the percentage and I want to animate it. below code increment, the count until the number reaches to hundred.



var text = document.querySelectorAll('text');
var duration = setInterval(count, 14);
var c = 0;
function count(){
for (var i = 0; i < text.length; i++) {
if(c == 101){
clearInterval(time);
}else {
text[i].textContent = c + '%';
}
}
c++;
}


but i want to have different text/number on each item. i tried below code but the number jumps from 0 to the value that i specified.



var text = document.querySelectorAll('text');
var duration = setInterval(count, 14);
var c = 0;
function count(){
for (var i = 0; i < text.length; i++) {
if(c == 82){
text[0].textContent = c + '%';
}else if(c == 46){
text[1].textContent = c + '%';
}else if(c == 76){
text[2].textContent = c + '%';
}else if(c == 56){
text[3].textContent = c + '%';
}else if(c == 26){
text[4].textContent = c + '%';
}else if(c == 96){
text[5].textContent = c + '%';
}
}
c++;

}
setInterval(count, 14);









share|improve this question



























    0















    I have a multiple Pie chart that has text inside it to show the percentage and I want to animate it. below code increment, the count until the number reaches to hundred.



    var text = document.querySelectorAll('text');
    var duration = setInterval(count, 14);
    var c = 0;
    function count(){
    for (var i = 0; i < text.length; i++) {
    if(c == 101){
    clearInterval(time);
    }else {
    text[i].textContent = c + '%';
    }
    }
    c++;
    }


    but i want to have different text/number on each item. i tried below code but the number jumps from 0 to the value that i specified.



    var text = document.querySelectorAll('text');
    var duration = setInterval(count, 14);
    var c = 0;
    function count(){
    for (var i = 0; i < text.length; i++) {
    if(c == 82){
    text[0].textContent = c + '%';
    }else if(c == 46){
    text[1].textContent = c + '%';
    }else if(c == 76){
    text[2].textContent = c + '%';
    }else if(c == 56){
    text[3].textContent = c + '%';
    }else if(c == 26){
    text[4].textContent = c + '%';
    }else if(c == 96){
    text[5].textContent = c + '%';
    }
    }
    c++;

    }
    setInterval(count, 14);









    share|improve this question

























      0












      0








      0








      I have a multiple Pie chart that has text inside it to show the percentage and I want to animate it. below code increment, the count until the number reaches to hundred.



      var text = document.querySelectorAll('text');
      var duration = setInterval(count, 14);
      var c = 0;
      function count(){
      for (var i = 0; i < text.length; i++) {
      if(c == 101){
      clearInterval(time);
      }else {
      text[i].textContent = c + '%';
      }
      }
      c++;
      }


      but i want to have different text/number on each item. i tried below code but the number jumps from 0 to the value that i specified.



      var text = document.querySelectorAll('text');
      var duration = setInterval(count, 14);
      var c = 0;
      function count(){
      for (var i = 0; i < text.length; i++) {
      if(c == 82){
      text[0].textContent = c + '%';
      }else if(c == 46){
      text[1].textContent = c + '%';
      }else if(c == 76){
      text[2].textContent = c + '%';
      }else if(c == 56){
      text[3].textContent = c + '%';
      }else if(c == 26){
      text[4].textContent = c + '%';
      }else if(c == 96){
      text[5].textContent = c + '%';
      }
      }
      c++;

      }
      setInterval(count, 14);









      share|improve this question














      I have a multiple Pie chart that has text inside it to show the percentage and I want to animate it. below code increment, the count until the number reaches to hundred.



      var text = document.querySelectorAll('text');
      var duration = setInterval(count, 14);
      var c = 0;
      function count(){
      for (var i = 0; i < text.length; i++) {
      if(c == 101){
      clearInterval(time);
      }else {
      text[i].textContent = c + '%';
      }
      }
      c++;
      }


      but i want to have different text/number on each item. i tried below code but the number jumps from 0 to the value that i specified.



      var text = document.querySelectorAll('text');
      var duration = setInterval(count, 14);
      var c = 0;
      function count(){
      for (var i = 0; i < text.length; i++) {
      if(c == 82){
      text[0].textContent = c + '%';
      }else if(c == 46){
      text[1].textContent = c + '%';
      }else if(c == 76){
      text[2].textContent = c + '%';
      }else if(c == 56){
      text[3].textContent = c + '%';
      }else if(c == 26){
      text[4].textContent = c + '%';
      }else if(c == 96){
      text[5].textContent = c + '%';
      }
      }
      c++;

      }
      setInterval(count, 14);






      javascript html timer counter






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 21:33









      Kinan AlamdarKinan Alamdar

      899




      899
























          1 Answer
          1






          active

          oldest

          votes


















          1














          You dont need for statement as you are accessing all elements manually and you want numbers to change while their value is smaller than target:



          function count(){
          if(c <= 82)
          text[0].textContent = c + '%';
          if(c <= 46)
          text[1].textContent = c + '%';
          if(c <= 76)
          text[2].textContent = c + '%';
          if(c <= 56)
          text[3].textContent = c + '%';
          if(c <= 26)
          text[4].textContent = c + '%';

          //after reaching to highest number you need to stop the clock

          if(c <= 96)
          text[5].textContent = c + '%'
          else
          clearInterval(time);

          c++;
          }





          share|improve this answer
























          • Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

            – Kinan Alamdar
            Nov 21 '18 at 22:40











          • Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

            – Sven Liivak
            Nov 22 '18 at 7:38











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420755%2fhow-to-add-counter-on-multiple-text%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          You dont need for statement as you are accessing all elements manually and you want numbers to change while their value is smaller than target:



          function count(){
          if(c <= 82)
          text[0].textContent = c + '%';
          if(c <= 46)
          text[1].textContent = c + '%';
          if(c <= 76)
          text[2].textContent = c + '%';
          if(c <= 56)
          text[3].textContent = c + '%';
          if(c <= 26)
          text[4].textContent = c + '%';

          //after reaching to highest number you need to stop the clock

          if(c <= 96)
          text[5].textContent = c + '%'
          else
          clearInterval(time);

          c++;
          }





          share|improve this answer
























          • Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

            – Kinan Alamdar
            Nov 21 '18 at 22:40











          • Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

            – Sven Liivak
            Nov 22 '18 at 7:38
















          1














          You dont need for statement as you are accessing all elements manually and you want numbers to change while their value is smaller than target:



          function count(){
          if(c <= 82)
          text[0].textContent = c + '%';
          if(c <= 46)
          text[1].textContent = c + '%';
          if(c <= 76)
          text[2].textContent = c + '%';
          if(c <= 56)
          text[3].textContent = c + '%';
          if(c <= 26)
          text[4].textContent = c + '%';

          //after reaching to highest number you need to stop the clock

          if(c <= 96)
          text[5].textContent = c + '%'
          else
          clearInterval(time);

          c++;
          }





          share|improve this answer
























          • Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

            – Kinan Alamdar
            Nov 21 '18 at 22:40











          • Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

            – Sven Liivak
            Nov 22 '18 at 7:38














          1












          1








          1







          You dont need for statement as you are accessing all elements manually and you want numbers to change while their value is smaller than target:



          function count(){
          if(c <= 82)
          text[0].textContent = c + '%';
          if(c <= 46)
          text[1].textContent = c + '%';
          if(c <= 76)
          text[2].textContent = c + '%';
          if(c <= 56)
          text[3].textContent = c + '%';
          if(c <= 26)
          text[4].textContent = c + '%';

          //after reaching to highest number you need to stop the clock

          if(c <= 96)
          text[5].textContent = c + '%'
          else
          clearInterval(time);

          c++;
          }





          share|improve this answer













          You dont need for statement as you are accessing all elements manually and you want numbers to change while their value is smaller than target:



          function count(){
          if(c <= 82)
          text[0].textContent = c + '%';
          if(c <= 46)
          text[1].textContent = c + '%';
          if(c <= 76)
          text[2].textContent = c + '%';
          if(c <= 56)
          text[3].textContent = c + '%';
          if(c <= 26)
          text[4].textContent = c + '%';

          //after reaching to highest number you need to stop the clock

          if(c <= 96)
          text[5].textContent = c + '%'
          else
          clearInterval(time);

          c++;
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 21 '18 at 22:20









          Sven LiivakSven Liivak

          96719




          96719













          • Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

            – Kinan Alamdar
            Nov 21 '18 at 22:40











          • Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

            – Sven Liivak
            Nov 22 '18 at 7:38



















          • Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

            – Kinan Alamdar
            Nov 21 '18 at 22:40











          • Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

            – Sven Liivak
            Nov 22 '18 at 7:38

















          Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

          – Kinan Alamdar
          Nov 21 '18 at 22:40





          Sven Liivak. thank brother it works. i'm actually new in programming and your advice about for loop was really helpful.

          – Kinan Alamdar
          Nov 21 '18 at 22:40













          Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

          – Sven Liivak
          Nov 22 '18 at 7:38





          Now and in the future in SO: instead of "thanks" "wow" etc. comments use upvote and "accept answer" options.

          – Sven Liivak
          Nov 22 '18 at 7:38




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420755%2fhow-to-add-counter-on-multiple-text%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter