这是我的代码片段。
function customFadeIn () {
$("img.imgKit").each(function(index) {
$(this).delay(1000*index).fadeIn("slow");
});
console.log("one runs");
}
function customFadeOut () {
$("img.imgKit").each(function(index) {
$(this).delay(1000*index).not(document.getElementById('card-6')).fadeOut("slow" , function () {
$("#card-6").delay(1000).rotate({angle:0});
});
});
console.log("two runs");
}
我希望 customFadeOut 仅在 customFadeIn 完成后运行,因此我通过这个来调用它
customFadeIn();
customFadeOut();
但它没有用,我想我在这里做错了,帮助真的很有帮助。