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

  • SEARCH
  • Home
  • 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 6790171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:41:37+00:00 2026-05-26T17:41:37+00:00

In our page,we often use the javascript based animation to make the element move/resize,most

  • 0

In our page,we often use the javascript based animation to make the element move/resize,most of them use the setTimeout or setInterval to change the position or size of the element:

For example:

function open() {
  var w=parseInt(foo.style.width);
  if(w>=200) clearTimeout(t);
  else{
    foo.style.width = +1+'px';
    t=setTimeout(open,20); // call doMove in 20msec
  }

}

function init() {
  foo = document.getElementById('dv'); // get the "foo" object
  foo.style.width = '0px'; // set its initial position to 0px
  open(); // start animating
}

The above code want to show the div#foo slowly,but as you see,I set the maxwidth of the div to 200px to stop the animation.

But how about if the real size of the content div should more than 200?

That’s to say I can not get the final width of the element.

What is the general solution?

Here is the live exmple:

  • 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-26T17:41:37+00:00Added an answer on May 26, 2026 at 5:41 pm

    Use the modified code as shown below. It will continue expanding until the element has reached its full width.

    function open() { //See comment at OP
        var w = foo.offsetWidht; // offsetWidht NOT style.width
        var realWidth = foo.scrollWidth;
        if(w < 200 || w < realWidth) {
            foo.style.width = +1+'px';
            setTimeout(open, 20); // call doMove in 20msec
        }
    }
    

    Also, you don’t need clearTimeout, since no timeout has been set when the function is called again.

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

Sidebar

Related Questions

We make changes often on our website (which uses caching) and sometimes user don't
In Javascript, I have this function to display the current date on our page
One of our page templates is made up of a bunch of macros. These
We have an issue on our page whereby the first time a button posts
Our web page is only available internally in our company and we am very
Let's assume our average page weights P KBytes and we've got N visits per
I want to add a mailto link on our web page. I want to
A page within our MOSS publishing website has a property which is a lookup
We've got a page in our asp.net web system that uses response.redirect to redirect
I made a new page in our website that needs to access some functions

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.