我试图在 jquery 中控制我的函数的顺序,点击 id 就像一个图像淡出,要交换的图像源,然后新图像淡入。
我有以下那种作品,只有它一次完成,他们是防止这种情况的一种方法吗?
// Animate height of div containing information
$(this).animate({
'height' : '600px'
},500, function(){
$('html, body').animate({ scrollTop: $(this).offset().top });
// Fade initial image out
img.fadeOut();
// Switch to hi-red image
img.attr('src', function(i, value) {
return '_includes/images/work/hires/' + value;
});
//Fade Hi res image in
img.fadeIn();
});