これは私のコードスニペットです。
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");
}
customFadeInが実行された後にのみcustomFadeOutを実行したいので、これで呼び出します
customFadeIn();
customFadeOut();
しかし、それはうまくいきませんでした、私はここで何か間違ったことをしたと思います、助けは本当に役に立ちます。