带有到达点的进度条的滑块
Slider with progress bar that reach dots
我正在搜索 google 几天。我正在寻找进度条达到 dots/points 的滑块。
我发现了一些我感兴趣并且可以工作的东西:
Presentation Cycle
但是当您单击 dot/point 时,进度条停止。我希望它一直在运动。
感谢您的宝贵时间!
您可以通过注释(删除)presentationCycle.js 文件中的 3 行来解决此问题:
第 166 行的函数。
gotoSlide: function(itemNr) {
// $(presentationCycle.barContainerOverflow).stop();
// presentationCycle.disableAnimation = true;
$('#' + presentationCycle.containerId).cycle((itemNr - 1));
// $('#' + presentationCycle.containerId).cycle('pause');
}
我正在搜索 google 几天。我正在寻找进度条达到 dots/points 的滑块。
我发现了一些我感兴趣并且可以工作的东西: Presentation Cycle
但是当您单击 dot/point 时,进度条停止。我希望它一直在运动。
感谢您的宝贵时间!
您可以通过注释(删除)presentationCycle.js 文件中的 3 行来解决此问题: 第 166 行的函数。
gotoSlide: function(itemNr) {
// $(presentationCycle.barContainerOverflow).stop();
// presentationCycle.disableAnimation = true;
$('#' + presentationCycle.containerId).cycle((itemNr - 1));
// $('#' + presentationCycle.containerId).cycle('pause');
}