我有一个运行两个功能的 onclick,我希望第一个运行并完成,并在完成时启动下一个。我现在有这样的设置,它们似乎同时运行:
$("#animate_1").click(function() {
update_1_close();
welcome_open();
});
这是两个功能,我不想组合它们,我有几个,组合起来会很复杂
function update_1_close() {
$("#update_1").animate({
"right": "175px",
"width": "160px"
}, 450);
$("#update_1_caption").animate({
"bottom": "0px"
}, 450);
$("#update_1_img").animate({
"height": "107px",
"width": "160px"
}, 450);
}
function welcome_open() {
$("#welcome_back_1").animate({
"top": "345px"
}, 450);
$("#welcome_header_1").animate({
"top": "35px",
"left": "20px"
}, 450);
$("#welcome").animate({
"height": "270px"
}, 450)
$("#stick_figures").animate({
"top": "215px"
}, 450);
$("#update_1").animate({
"top": "465px",
"right": "175px"
}, 450);
$("#update_2").animate({
"top": "465px"
}, 450);
$("#events").animate({
"top": "645px"
}, 450);
$("#directions").animate({
"top": "645px"
}, 450);
}