2
I’m trying to create slide gallery with http://bxslider.com/ I would like the gallery to run one image at a time and not a group of images.
Example I am using but would like to CHANGE : http://bxslider.com/examples/carousel-dynamic-number-slides)
Below the code:
<script>
$(document).ready(function(){
$('.bxslider').bxSlider({
minSlides: 3,
maxSlides: 2,
slideWidth: 170,
slideMargin: 10});
});
</script>
Reading the options of bxslider I found the getCurrentSlide option that I think could be right but I don’t know how to enter the script above :
example:
slider = $('.bxslider').bxSlider();
var current = slider.getCurrentSlide();
Thank you!