Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

183
Views
Javascript per second calculation

I am currently wracking my brain to work out what should probably be a relatively simple per second calculation. I have a loading bar increase and at the end of that, it adds 1 to the total. The loading bar consists of:

wId = setInterval(worker_identify_call, wIdSpeed);

and

function worker_identify_call(){
    worker_identify_amount++;
    wElem.style.width = worker_identify_amount + '%';
}

wIdSpeed = 250.

I am trying to calculate how long, in seconds, it will take to reach the top of the loading bar (100%).

I currently have ((1000/wIdSpeed).toFixed(2)) but that just calculates how long a cycle of setInterval takes.

CodePen with example here.

Any help is appreciated!

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

If you want to recalculate after every cycle you have to move workerString(); to inside the function that loops.

As for the math, you need to get the remaining (100 - worker_identify_amount) and check how many things it's adding per second and figure out the result from that.

about 4 years ago · Juan Pablo Isaza Report

0

I'm in idiot. For anyone that wants to find this in the future, it would be:

(((wIdSpeed/1000)*100).toFixed(2));

Where wIdSpeed is the speed of your interval.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!