On Dec 17, 3:13 am, Craig <[email protected]> wrote:
> I have a very graphics intense website with 4 sliders on each coded in
> a serperate JS file.
>
> Recently i have developed a full screen image viewer that behaves much
> like lightbox. I am using the effects library to BlindDown the image
> and alternates in their containers as well as Appear/Fading a
> background that covers the whole page.
>
> Problem is that this makes the browser lag and the animation does not
> look smooth at all.
>
> Does anyone have any tips that could be helpful for me to improve the
> FPS as i am not the most experienced js programmer?
Optimisation for speed usually starts by finding the code that is most
sluggish. You can spend a very long time optimising by doint things
like replacing for loops with do loops or whatever for marginal
improvement when some other simple change, like replacing extensive
use of += to concatenate strings with Array.join or just plain +
(specific to IE), can have a dramatic effect.
Post a link.
You might also consider whehter your effects add to the functionality
of the page or are just a nusance.
--
Rob
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---