http://codepen.io/bradfrost/pen/pgjav
如您所见,当到达轮播结束时,右侧的导航按钮停止工作。我希望轮播在此时单击时循环回到开头。
我不知道是否有一个简单的解决方案,但我想我会问。任何帮助或参考将不胜感激。
谢谢!
http://codepen.io/bradfrost/pen/pgjav
如您所见,当到达轮播结束时,右侧的导航按钮停止工作。我希望轮播在此时单击时循环回到开头。
我不知道是否有一个简单的解决方案,但我想我会问。任何帮助或参考将不胜感激。
谢谢!
您可以更改current
prev 和 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);