我一直试图让一个函数只在所有元素的.animate()
函数完成后才触发,包括延迟和缓动。
我尝试过几种不同的方法,没有运气,有什么想法吗?
$("#inner_work").on("mouseenter", ".activeBox", function(){
var thisBox = $(this).attr('id');
$("#inner_work [class^='workBox_']").each(function(){
if($(this).attr('id') != thisBox){
$(this).stop().delay(randomEasing(200,800)).animate({
opacity:0
}, randomEasing(200,700));
} else {
$(this).stop().animate({
opacity:1
}, 'fast');
}
});
});
如何在完成所有动画后触发事件?
randomEasing
就是这个函数让它随机交错
function randomEasing(from,to)
{
return Math.floor(Math.random()*(to-from+1)+from);
}
答案 0 :(得分:7)
您可以使用延迟对象并请求.promise()
注册一个回调,只有当集合中每个元素的所有动画都已完成时才会调用该回调:
$("#inner_work [class^='workBox_']").promise().done(function() {
...
});
这可以与现有代码链接:
$("#inner_work [class^='workBox_']").each(function() {
// your existing animation code
}).promise().done(function() {
...
});