我目前理解$(“#someElement”)。animate()它将相对于任何其他JavaScript语句异步执行。例如:
$("#anotherElement").css("display", "none");
$("#someElement").animate();
//Setting the CSS display may fire AFTER the animation takes place.
如果我理解动画的工作方式是正确的,我该怎么做:
感谢您的帮助。
答案 0 :(得分:2)
样品:
$('#elem1').animate(params, function () {
$('#elem2').animate(params, function () {/* ...other elements */});
});