我想在JavaScript幻灯片中添加进度条(如SlidesJS或Nivoslider)。
我找到this question,其中涵盖了我需要的一些内容,但我可以将其整合到我的幻灯片中。
Here is an example of what I'm after.
例如,当我对焦幻灯片(或点击暂停按钮)时,时间轴和滑块将暂停,我可以恢复(当我搬出时)。
这是我到目前为止的代码:
<div id="products_example">
<div id="products">
<div id="slides_timeline"></div>
<div class="slides_container">
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-3-2x.jpg" width="366" alt="1144953 3 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-1-2x.jpg" width="366" alt="1144953 1 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-2-2x.jpg" width="366" alt="1144953 2 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-4-2x.jpg" width="366" alt="1144953 4 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-5-2x.jpg" width="366" alt="1144953 5 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-6-2x.jpg" width="366" alt="1144953 6 2x"></a>
<a href="http://www.zappos.com/pro-keds-royal-plus-lo-grey" target="_blank"><img src="img/1144953-p-2x.jpg" width="366" alt="1144953 P 2x"></a>
</div>
<ul class="pagination">
<li><a href="#"><img src="img/1144953-3-2x.jpg" width="55" alt="1144953 3 2x"></a></li>
<li><a href="#"><img src="img/1144953-1-2x.jpg" width="55" alt="1144953 1 2x"></a></li>
<li><a href="#"><img src="img/1144953-2-2x.jpg" width="55" alt="1144953 2 2x"></a></li>
<li><a href="#"><img src="img/1144953-4-2x.jpg" width="55" alt="1144953 4 2x"></a></li>
<li><a href="#"><img src="img/1144953-5-2x.jpg" width="55" alt="1144953 5 2x"></a></li>
<li><a href="#"><img src="img/1144953-6-2x.jpg" width="55" alt="1144953 6 2x"></a></li>
<li><a href="#"><img src="img/1144953-p-2x.jpg" width="55" alt="1144953 P 2x"></a></li>
</ul>
</div>
</div>
$(function(){
$('#products').slides({
preload: true,
preloadImage: 'img/loading.gif',
effect: 'fade',
slideSpeed:300,
crossFade:true,
fadeSpeed: 500,
generateNextPrev: true,
generatePagination: false,
play: 5000,
hoverPause:true,
animationStart: function(){animateTimeline();}, // Function called at the start of animation
animationComplete: function(){}, // Function called at the completion of animation
slidesLoaded: function() {} // Function is called when slides is fully loaded
});
});
////reset timeline
function resetTimeline(){
var timeline = $("#slides_timeline");
timeline.css({width:'0'},0);
}
////animate timeline
function animateTimeline(){
var timeline = $("#slides_timeline");
timeline.stop().css({width:'0',opacity:1},0);
timeline.stop().animate({width:'100%'},5000,'linear',function(){$(this).animate({opacity:0,width:0})});
}
$("#products .next,.pagination li a").click(function(){
resetTimeline();
});
答案 0 :(得分:0)
有几种不同的方法可以做到这一点,但从高层次来看,我会这样做:
这些类型的幻灯片中的每一个是否使用它基本上都使用了setInterval函数,并且当您将鼠标悬停时,您正在清除计时器或暂停它。因此,您可以访问函数中某个位置的变量,该变量指定每个幻灯片在移动之前显示的毫秒数,并且setInterval会触发移动到下一张幻灯片的函数。我将访问此变量,然后使用它来驱动jquery旋转插件,您可以使用滑块功能中的毫秒微控制旋转。
https://code.google.com/p/jqueryrotate/
如果你想要一个像示例中那样的进度条样式,你基本上需要将每张幻灯片的毫秒数转换成如下百分比:(当前/总毫秒)* 100然后将其作为百分比应用进度条上的宽度使其看起来像是在制作动画。