jquery 执行完动画后再执行别的操作

//.animate( properties [, duration ] [, easing ] [, complete ] )
//complete参数是完成动画后要执行的东西

$(this).animate({ height: "100px"}, 300,function(){
    $(this).toggleClass("bg_blue");
})

 

你可能感兴趣的:(web前端)