Hi,

On 11 Jun., 00:38, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I'm trying to implement jCarousel (0.2.0-beta) and am having trouble
> with it in Firefox 2.0/Win XP....
>
> http://www.homefront.tv/clients/gephardt/build/flicker.html
>
> After the slide effect, there's a flicker of white. I don't have the
> same problem in IE 6 or 7.
>
> I'm using the most up to date version of jQuery I can. Any ideas on
> how to fix the flicker?

try to replace

carousel.remove(i);

with

setTimeout(function() { carousel.remove(i); }, 20);

in your mycarousel_itemVisibleOutCallback function. The function
should look like:

function mycarousel_itemVisibleOutCallback(carousel, item, i, state,
evt)
{
    setTimeout(function() { carousel.remove(i); }, 20);
};


Jan

Reply via email to