vote up 1 vote down star

Hi,

In situations where a browser is under intense load I find that animated gifs, for example a throbber, will stop animating until the load subsides. This behaviour seem to be consistent across the browsers I've tried (Firefox, Safari, IE, Opera, ...).

Am wondering if there are any techniques I can use to ensure that animation continues during these periods.

Thanks! Matt

flag

2 Answers

vote up 2 vote down check

You might be able to alleviate it by decreasing the length of time the browser spends on any particular task. Split out the JavaScript loading, or defer some of it. See if you really need to be doing all your JavaScript tasks right as the page loads. Defer some of the image loading, especially images below the fold.

Think of the browser as a single-threaded piece of code; you need to break up the tasks it has to do so that there's time in there to update the throbber animation.

link|flag
I will give this approach a try. Just need to figure out the logical spots to break up the processing here. It's a period of "heavy lifting" that occurs in a web app subsequent to page load, where a significant amount of string manipulation if occurring. Will have to refactor to break that out into chunks. – Matty Nov 4 at 13:53
Yeah, you can also look at techniques that would do a window.setTimeout(f(), 0); where f() continues the processing. (In other words, do some work, then setTimeout a function that will do more work.) That's one way of splitting up a big chunk of processing into lots of little chunks of processing, and the browser is better able to find time in there to update UI and keep things responsive. – Anthony Mills Nov 4 at 14:01
Cool. Thanks for the advice. Thinking out loud - Might try a Flash throbber as a quick and dirty way to push the "animation" into a separate process, while working on the larger solution of refactoring what a big piece of legacy code. – Matty Nov 4 at 14:09
vote up 1 vote down

You have no control on the page side except for reducing the load on the browser that the page actually contributes.

Maybe you could use the services of YSLOW to help you? It's a Firefox/Firebug plugin.

link|flag
Yes, I suspected as much :( – Matty Nov 4 at 13:50
Look at my updated entry for an additional (maybe) helpful link. – jldupont Nov 4 at 14:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.