The timer runs back every 3 seconds:
var i = 0,
t = setInterval(function () {
i++;
i===3 ? i=0 : false;
$('.slide li').eq(i).fadeIn(300).siblings('li').fadeOut(300);
}, 3000);
But the effect will be flashy white, and the transition is not natural at all. I need a very natural transition effect.
Example of such effect: http://www.5icool.org/demo/20...
Am I using the wrong method?
The effect is described in the link below
Fade in and out is to change the transparency, you can try to use css3 transition
var i = 0,