gpt4 book ai didi

javascript - jQuery : bxSlider carousel active classes for all showing items (not single)

转载 作者:行者123 更新时间:2023-11-29 19:46:17 25 4
gpt4 key购买 nike

有没有添加事件类的解决方案?

演示 http://jsfiddle.net/sweetmaanu/bDRNH/

<div class="slider4">
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar1">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar2">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar3">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar4">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar5">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar6">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar7">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar8">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar9">
</div>
<div class="slide">
<img src="http://placehold.it/300x150&text=FooBar10">
</div>
</div>

希望解决方案应该在回调中。

$('.slider4').bxSlider({
slideWidth: 300,
minSlides: 3,
maxSlides: 3,
moveSlides: 1,
slideMargin: 10
});

最佳答案

看起来没有内置支持来查找轮播的事件幻灯片(多张幻灯片)但是,我认为只需很少的操作(可能很难看),您就可以找到事件的幻灯片索引。但这也仅在第一次幻灯片转换后有效。 Check the jsfiddle

解释我如何获得事件幻灯片索引

   var slider = $('.bxslider').bxSlider({
minSlides: 2,
maxSlides: 3,
controls:false,
hideControlOnEnd:true,
infiniteLoop:false,
onSlideAfter : function(elem, old, newind){
var curfirstIndex;
var noofslides = Math.round($('.slider_container').width()/180); //divide by slidewidth + sliderMargin
$("#Active").empty();
if(old > newind){
curfirstIndex = old * noofslides - noofslides;
}else{
curfirstIndex = old * noofslides + noofslides;
}
$("#Active").append(++curfirstIndex + ", "); //++ because it starts from 0 and not 1

for(var i=0; i< noofslides -1 ; i++){
$("#Active").append(++curfirstIndex + ", ");
}
},
slideWidth: 170,
slideMargin: 10
});

如果您不选择此作为答案,我不会感到惊讶。我自己对解决方案不满意:(

关于javascript - jQuery : bxSlider carousel active classes for all showing items (not single),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19370970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com