我有 12 张带图片的幻灯片。我想使用 jQuery 动画或淡入/淡出效果。这是我的代码:
$('#Li4').click(function () {
$('#bnrImg').fadein(1000);
$('#chnlLogo').fadein(1000);
$('#mainBanner').css('backgroundColor', '#FBB03E');
$('#bnrImg').attr('src', 'images/cBanners/bnr_neuro.png');
$('#chnlLogo').attr('src', 'images/images.png');
$('#chnlLink').attr('href', 'http://link.tv');
$('#bnrImg').fadeout(1000);
$('#chnlLogo').fadeout(1000);
});
$('#Li5').click(function () {
$('#bnrImg').fadein(1000);
$('#chnlLogo').fadein(1000);
$('#mainBanner').css('backgroundColor', '#DB7EB4');
$('#bnrImg').attr('src', 'images/cBanners/bnr_diabetes.png');
$('#chnlLogo').attr('src', 'images/image.png');
$('#chnlLink').attr('href', 'http://link.com');
$('#bnrImg').fadeout(1000);
$('#chnlLogo').fadeout(1000);
});
但问题是,当我从#li4 单击到#li5 时,#bnrImg 和#chnlLogo 会在我单击后执行它们的动画或淡入/淡出。我希望在单击幻灯片后具有淡出效果,然后在幻灯片更改后立即自动淡入图像。谢谢。