$image .fadeIn() .fadeOut(function() { $(this).remove(); });
我想在.fadeOut之后添加一个.delay,并且。删除$ image只有一次.delay已经完成。我努力了:
$image .fadeIn() .fadeOut() .delay(1000,function() { $(this).remove(); });
问题是.delay doest不接受回调函数。我怎么可以删除图片作为回调到.delay?
$image.fadeIn() .fadeOut() .delay(1000) .queue(function(next) { $(this).remove(); next(); });