我试图在http://triple-g.eu/fotogalerij.html上对照片上的效果产生很好的效果 现在我从大图像淡出到较小的图像。
如何才能让从较大格式到较小格式的过渡更好?
现在代码:
$("#thumbnails img").each(function(index) {
$(this).hide().delay(100*index).fadeIn(750);
});
setTimeout(function()
{
$("li#hide").fadeOut(3500, function ()
{
$("li#hide img").remove();
$("li#hide2").show();
});
}, 1000);