Greetings to all...
I want to use fade effect with jCarouselLite qualities. Is it possible.
Needs:
Can anyone guid me for this please.
Geetha.
To fade from "Image to Image" rather than "Image to White to Image" you should set the speed attribute to zero, e.g.
$('#content .slider .inner')
.jCarouselLite(
{
afterEnd : function(el) { $(el).parent().fadeTo(500, 1); },
beforeStart : function(el) { $(el).parent().fadeTo(500, 0); },
speed : 0
}
);