jquery翻转多个图像

时间:2013-03-23 04:03:49

标签: jquery html

我正在尝试创建一个函数,我可以调用它来一个接一个地翻转多个图像。关于我做错了什么的想法?提前致谢

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

1 个答案:

答案 0 :(得分:1)

您不能使用conditions代替使用。

onAnimation: function(){ 
   if (cnt > 0){flipImage(totCount, cnt)}
},