我正在尝试添加一个链接到另一个的淡出功能。点击这里目前我有一个闪烁的标志。当用户点击徽标时,闪烁停止,稍有延迟,然后慢慢淡出。有没有人能够纠正我在下面粘贴的代码?
<script>
$(document).ready(function(){
$("#center-gif").click(function(){
$('#center-gif').hide();
$('#center-img').show();
});
$('#center-img').click(function(){
$('#center-img').hide();
$('#center-img-gif').show();
});
$('flash-link').click(function(){
$('center-img').fadeOut(5000);
});
});
</script>