複数の画像を次々と反転するために呼び出すことができる関数を作成しようとしています。私が間違っていることについての考え?前もって感謝します
function flipImage(totCount, flipCount) {
totCount--;
var cnt = flipCount;
cnt++;
var id = '#flip'+cnt;
$(id).flip({
speed:400,
color: 'red',
direction: 'rl',
onAnimation: if (cnt > 0){flipImage(totCount, cnt)},
onEnd: function () {
$(id).show(400);
}
});
}