前端之家收集整理的这篇文章主要介绍了
jquery – 回调到.delay(),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个$ .fadeIn和.fadeOut的映像,然后.fadeOut完成后
删除。这是我的
代码:
$image
.fadeIn()
.fadeOut(function() {
$(this).remove();
});
我想在.fadeOut之后添加一个.delay,并且。删除$ image只有一次.delay已经完成。我努力了:
$image
.fadeIn()
.fadeOut()
.delay(1000,function() {
$(this).remove();
});
问题是.delay doest不接受回调函数。我怎么可以删除图片作为回调到.delay?
您可以使用
queue()方法安排自己的
函数在delay()完成后运行:
$image.fadeIn()
.fadeOut()
.delay(1000)
.queue(function(next) {
$(this).remove();
next();
});
原文链接:https://www.f2er.com/jquery/182779.html