我想2 of 10
在我的滑块上显示幻灯片计数。如何使它与过渡一起工作3 of 10
,4 of 10
(当滑块随幻灯片移动时)& 7 of 10
(如果单击了相应的缩略图)?
问问题
9854 次
2 回答
5
您可以将当前幻灯片编号current_slide_no = jQuery('#nivo-slider').data('nivo:vars').currentSlide;
添加到它,因为索引从 0 开始。
在初始化 NIVO 滑块时使用afterChange
属性更改当前幻灯片编号。
所以,我得到了它的工作
<script type="text/javascript">
jQuery(document).ready(function(){
var total = jQuery('#nivo-slider img').length;
var current_slide_no = 1; // garbage
// var rand = Math.floor(Math.random()*total);
jQuery('#nivo-slider').nivoSlider({
effect:'fade', //Specify sets like: 'fold,fade,sliceDown,slideInLeft'
animSpeed:600, //Slide transition speed
pauseTime:30000,
directionNav:false, //Next and Prev
// directionNavHide:true, //Only show on hover
controlNav:true, //1,2,3...
controlNavThumbs:true, //Use thumbnails for Control Nav
controlNavThumbsFromRel:true, //Use image rel for thumbs
pauseOnHover:false, //Stop animation while hovering
//captionOpacity:0.3, //Universal caption opacity
startSlide:0, //Set starting Slide (0 index)
// keyboardNav:true //Use left and right arrows
afterChange: function(){
current_slide_no = jQuery('#nivo-slider').data('nivo:vars').currentSlide;
jQuery('#nivo-slider-status > .current-slide').html(current_slide_no+1);
}
});
jQuery('#nivo-slider-status').show();
jQuery('#nivo-slider-status > .total-slides').html(total);
current_slide_no = jQuery('#nivo-slider').data('nivo:vars').currentSlide;
jQuery('#nivo-slider-status > .current-slide').html(current_slide_no+1);
});
</script>
我的 html(应该在 NIVO 滑块 DIV 之外)是
<div id="nivo-slider-status" class="alignright">
<span class="current-slide"></span> of <span class="total-slides"></span>
</div>
于 2011-03-27T16:34:51.417 回答
0
您需要查找 clickhandler 和/或转换事件。我还没有使用 nivo 但这是你需要做的事情:
parent = $('#buttons'); // button container
pages = parent.find('.button').size; // total number of pages
parent.find('.button').click(function(){
index = parent.index($this) + 1; // this is the the page number
//do something with these variables
$('#div1').html(index + ' of ' + pages);
});
于 2011-03-26T10:31:51.097 回答