I used the bx slider to launch the slider on my nodejs website. Here is my code:
$(document).ready(function(){ $(".bxslider").bxSlider({ minSlides: 1, maxSlides: 40, slideWidth: 300, slideMargin: 40, moveSlides: 1 }); });
Since the slider was supposed to be 100% liquid wide, I set maxSlides to a fairly large number (40 here). Thanks to this, the slider expanded to its full width. But now the problem is that as the width of the slider is fluid, at a certain width, the rightmost visible slide is only partially displayed. I want it to display this full slide or leave it if it is not fully visible in the current viewport.
jquery css bxslider
Mohit bhardwaj
source share