Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-31 Thread Tom Mack
For me, what caused the flicker was that the script would set the 'overflow: hidden' property of the element. So if you declare that initially, no more flicker. Something like this: Stuff that you want hidden initially. --Tom Ron Piterman wrote: Hi, I add a div to my document and use an ef

Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-25 Thread Francois Beausoleil
Hi ! 2005/10/25, Ron Piterman <[EMAIL PROTECTED]>: > I am not sure we are all addressing the same problem. > My concret problem is that : > 1. I add a div to the document. > 2. the div displays for a short time <-- Thats the problem > 3. I let it slide down > 4. the div *disapears* and sildes down

Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-25 Thread Ron Piterman
I am not sure we are all addressing the same problem. My concret problem is that : 1. I add a div to the document. 2. the div displays for a short time <-- Thats the problem 3. I let it slide down 4. the div *disapears* and sildes down the problem is that between 2 and 4 the div apears for a shor

Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-21 Thread snacktime
On 10/19/05, Ron Piterman <[EMAIL PROTECTED]> wrote: Hi,I add a div to my document and use an effect to make it apear gracefully.Unfortunatly, when adding the element, the element apears shortly, thenthe effect (slideDown) lets it apear nicely - so the page flickers abit - What is the best practice

Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-21 Thread shodhan
Hi I faced the same issue on IE 6.0.2900.2180, (though the same worked fine on firefox 1.0.7 I used the following code <%= javascript_include_tag :defaults %> Slide(Scr) style="display:none;">sukkess thanks shodhan Thomas Fuchs wrote: Heya, Can you put up a simplified version of this wher

Re: [Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-21 Thread Thomas Fuchs
Heya, Can you put up a simplified version of this where this happens? Plus, what browser are you using (exact version!) Thanks, Thomas Am 19.10.2005 um 16:19 schrieb Ron Piterman: Hi, I add a div to my document and use an effect to make it apear gracefully. Unfortunatly, when adding the ele

[Rails-spinoffs] how to prevent "blinking" when adding an element with an effect

2005-10-19 Thread Ron Piterman
Hi, I add a div to my document and use an effect to make it apear gracefully. Unfortunatly, when adding the element, the element apears shortly, then the effect (slideDown) lets it apear nicely - so the page flickers abit - What is the best practice to avoid it? Cheers, Ron