0

http://codepen.io/bradfrost/pen/pgjav

如您所见,当到达轮播结束时,右侧的导航按钮停止工作。我希望轮播在此时单击时循环回到开头。

我不知道是否有一个简单的解决方案,但我想我会问。任何帮助或参考将不胜感激。

谢谢!

4

1 回答 1

0

您可以更改currentprev 和 next 函数的值。

尝试这个-

    $prev.click(function(e){ //Previous Button Click
        e.preventDefault();
        if(current>0) {
            current--;
        }
        else 
            current=animLimit;
        posCarousel();

    });
    $next.click(function(e){ //Next Button Click
        e.preventDefault();
        if(current<animLimit) {
            current++;
        }
        else 
            current=0;
        posCarousel();
    });
})(this);
于 2013-07-14T20:51:41.547 回答