我一直在尝试仅在元素的所有.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);
}