1

複数の画像を次々と反転するために呼び出すことができる関数を作成しようとしています。私が間違っていることについての考え?前もって感謝します

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);
        }
    });
}
4

1 に答える 1

1

conditionsその代わりに使用することはできません。

onAnimation: function(){ 
   if (cnt > 0){flipImage(totCount, cnt)}
},
于 2013-03-23T04:12:06.280 に答える