Faced with the swiper slider swiper , version Swiper 3.4.1. The problem is the next plan. The default adaptation is defined as follows: 320px - 1 slider, 485px - 2 slider. When displaying, let's say long testimonials , and they are long, it’s not very beautiful. Decided to get out of the situation as follows:

 var swiper = new Swiper('.sc_testimonials', { slidesPerView: 3, spaceBetween: 30, breakpointsInverse: true, dynamicMainBullets: 6, breakpoints: { 480: { slidesPerView: 1, spaceBetween: 30, }, } }); 

Yes, now the display of slides on extension 485 is 1 slide, but the behavior has not changed. The slides are spinning in half. With the same intensity as there would be two, on the floor of the slide in general. How can this problem be solved?

    0