I have a jQuery slider rotation here: http://8wayrun.com/
Every 5 seconds, the slide changes. I am using this code:
$("#recentSlider").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
The problem with this is evident if you look at it on my site; when it changes the slide, it fades out the current slide, then fades in the new slide. So there is a point in time when there is no slide on the screen. Is there a way to make it so that the new slide fades in while the old slide is fading out? So that there isn't any black emptiness?