Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3222790
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:01:55+00:00 2026-05-17T16:01:55+00:00

I animate simply object using: $(#progress).animate({width:400},2000) Than i also want to view it’s width

  • 0

I animate simply object using:

$("#progress").animate({width:400},2000)

Than i also want to view it’s width like that

$("#loadingpro").html(pro+"%");

pro = Math.round(procent$("#progress").width()/4);

But when I am doing it like that it’s start to delay whole cpu so much that it is not possible to do it at all.

Any ideas how I can try to do it in other way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:01:55+00:00Added an answer on May 17, 2026 at 4:01 pm

    You could use setInterval() and clearInterval(). Play around with the interval to get it smooth. ~20 microseconds is what worked for me:

    $(function() {
        var timer = setInterval(function() {
            $("#loadingpro").html(Math.round($("#progress").width()/4) + "%");
        },20);
        $("#progress").animate({width:400},2000, function() {
            clearInterval(timer);
        });
    });​
    

    jsFiddle example

    .setInterval() is a good choice, since you can stop it with clearInterval() in the animate() callback once all your calculations are done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Imagine you want to animate some object on a WinForm. You setup a timer
I am trying to animate an object, let's say its a car. I want
Rather than simply dumping the HTML into the page I want it to be
I'm trying to animate a block level element using jQuery. The page loads with
Is it possible to animate the change of a UIProgressView such that the display
Short version: I'm extending a jQuery object function that is intended to take 0-3
I have my object tracking the mouse using the onmousemove event. But I would
I am creating a simple animated menu using .animate() to enlarge the menu item
Instead of using an animated gif, I would like to instead have text in
I'm drawing some lines in cocos2d (using handy ccDrawLine), nothing fancy, but i want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.