I'm trying to create a slide gallery with link I would like the gallery to pass one image at a time and not a group of images.
Example that I'm using but would like to CHANGE: link )
Below the code:
<script>
$(document).ready(function(){
$('.bxslider').bxSlider({
minSlides: 3,
maxSlides: 2,
slideWidth: 170,
slideMargin: 10});
});
</script>
Reading the bxslider options I found the getCurrentSlide option that I think might be right but I do not know how to enter it in the above script:
example:
slider = $('.bxslider').bxSlider();
var current = slider.getCurrentSlide();
Thank you!