well your using the slide up and slide down. i suggest making a more custom animation.
// slide Up Reworked $(".myobj").animate({ opacity:0, marginTop:-100% }, 500); // slide Down Reworked $(".myobj").animate({ opacity:1, marginTop:0% }, 500); i haven't really tested these but you could play around with it. On Sun, Jul 5, 2009 at 10:52 PM, Charlie <charlie...@gmail.com> wrote: > there's nothing in this post to work with to help assist. Posting a live > link or a test case in jsbin.com would be best bet for anyone to see what > is happening, and how it is created. > > > Blake Senftner wrote: > > > Hi all, > > I've got a nice little bit of logic for exposing and hiding detail > information on my pages. > It's simply doing slides down/up and fades in/out to achieve appearing and > disappearing. > However, when there is more than just a few lines of content being > revealed, the web page > flashes and flickers during the transition. > > I'm using firefox 3.0.1, but of course I'd like any solution advice to be > cross-browser. > > Thanks in advance for any advice! > -Blake > > >