我在谷歌搜索了几天。我正在寻找带有达到点/点的进度条的滑块。
我发现了一些让我感兴趣并可以工作的东西: Presentation Cycle
但是当您点击点/点时,进度条会停止。我希望它不断运动。
谢谢你的时间!
答案 0 :(得分:1)
您可以通过在presentationCycle.js文件中注释(删除)3行来解决此问题: 第166行的功能。
gotoSlide: function(itemNr) {
// $(presentationCycle.barContainerOverflow).stop();
// presentationCycle.disableAnimation = true;
$('#' + presentationCycle.containerId).cycle((itemNr - 1));
// $('#' + presentationCycle.containerId).cycle('pause');
}