vote up 4 vote down star
1

Please try to scroll down this page with the newest version of Firefox (3.5) http://resopollution.com/rentfox/html5/dashboard.html

=(

Is there any way to fix the flickering?

Thanks in advance for help!

Solution Found

you have to add overflow:auto on all flickering divs using position: fixed version here: http://resopollution.com/rentfox/html6/dashboard.html

flag

1  
It's part of a known set of bugs with fixed items in Firefox... there are lot of useful links here : stackoverflow.com/questions/67588/… I'm not sure the best way to approach a fix for this that would be ideal, so I won't actually put it as an answer, but my testing shows it's only when it "repaints" the same area through the viewport you've created. To see what I mean, turn off overflow:auto on #dashboard (set it to hidden) and you'll see it only giggles on the far left. – NateDSaint Jul 22 at 19:07
1  
This issue is being tracked in bugzilla.mozilla.org/show_bug.cgi?id=531461/… and should be fixed by Firefox 3.6 final. – sdwilsh Nov 30 at 21:23

2 Answers

vote up 2 vote down check

Found a solution. If you are experiencing this problem, add overflow:auto to the element that has the position: fixed property.

link|flag
Can you show an example of this? I went back to the same link and it still shows the flicker. I'm curious as to how this fixed the issue, and I'd like to learn more as I've been avoiding fixed divs for that very reason. – NateDSaint Jul 23 at 14:20
See my original post, I posted a URL of the broken one and URL of fixed one – resopollution Jul 23 at 20:00
1  
Excellent! It looks like the way it rendered it before was that it redrew them at different times because of the overflow properties. From what I've read, you can get the same effect if you put overflow:hidden on both, but then the scrolling would behave differently (although in FF3.5, the page would still scroll properly, as the body content would exceed the limit of the view, which would be determined by the div that was oversized). +1 for self-learning! – NateDSaint Jul 24 at 20:57
Works like Magic! Many thanks :) – Crimson Nov 30 at 11:51
vote up 1 vote down

You could use JavaScript that will make your fixed elements float with smooth animation.

Also, don't forget to inform Mozilla about this.

PS. I think this is because you used to much images. They make it slow and memory-consuming.

link|flag
Could you provide a link to the JavaScript example you are talking about? – resopollution Jul 22 at 19:30
1  
I saw this on a website sometime, I don't exactly know the code. But with jQuery you can create an animation which changes the position to the scroll position. See javascriptkit.com/javatutors/static2.shtml/… for more information about how to determine the scroll position. – Koning Baard XIV Jul 23 at 7:19

Your Answer

Get an OpenID
or

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