admin管理员组文章数量:1340885
I'm trying to have 3 visible slides in the page. The problem is that whenever there are less than 3 slides those slides are duplicated to fill also the empty spaces so, for instance, if I have just one slide it shows three identical copies of the same slide. Is there any way to avoid that ? I would like just the single slide to be shown.
Here's the configuration of the swiper:
var swiper = new Swiper('.campaign-slider-two', {
slidesPerView: 3,
spaceBetween: 0,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
breakpoints: {
768: {
slidesPerView: 2,
},
767: {
slidesPerView: 1,
},
},
pagination: {
el: '.campaign-pagination',
clickable: true,
},
loop: true,
});
I took a look at the Swiper documentation but I couldn't find anything about this kind of configurations. How to solve this issue?
I'm trying to have 3 visible slides in the page. The problem is that whenever there are less than 3 slides those slides are duplicated to fill also the empty spaces so, for instance, if I have just one slide it shows three identical copies of the same slide. Is there any way to avoid that ? I would like just the single slide to be shown.
Here's the configuration of the swiper:
var swiper = new Swiper('.campaign-slider-two', {
slidesPerView: 3,
spaceBetween: 0,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
breakpoints: {
768: {
slidesPerView: 2,
},
767: {
slidesPerView: 1,
},
},
pagination: {
el: '.campaign-pagination',
clickable: true,
},
loop: true,
});
I took a look at the Swiper documentation but I couldn't find anything about this kind of configurations. How to solve this issue?
Share Improve this question edited Aug 13, 2020 at 14:35 Dharman♦ 33.4k27 gold badges101 silver badges147 bronze badges asked Mar 19, 2020 at 16:09 StarlordzStarlordz 511 gold badge1 silver badge3 bronze badges4 Answers
Reset to default 4Simply change the loop
parameter from true
to false
ADD THESE LINES BEFORE CREATING YOUR SWIPER
const swiper = this.swiper;
swiper.loopDestroy();
swiper.loopCreate();
For Example:
const swiper = this.swiper;
swiper.loopDestroy();
swiper.loopCreate();
var swiper = new Swiper('.swiper-container', {
slidesPerView: 'auto',
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});`
Manually destroying the loop after initializing swiper worked for me as suggested on this github issue:
var swiper = new Swiper('.campaign-slider-two', {
slidesPerView: 3,
spaceBetween: 0,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
breakpoints: {
768: {
slidesPerView: 2,
},
767: {
slidesPerView: 1,
},
},
pagination: {
el: '.campaign-pagination',
clickable: true,
},
loop: true,
});
swiper.loopDestroy();
It allows you have loop but would not create any duplicates.
If you know in advance how many items there will be, you can set slidesPerView
accordingly:
var swiper = new Swiper('.campaign-slider-two', {
slidesPerView: Math.min(items.length, 3),
spaceBetween: 0,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
breakpoints: {
768: {
slidesPerView: Math.min(items.length, 2),
},
767: {
slidesPerView: Math.min(items.length, 1),
},
},
pagination: {
el: '.campaign-pagination',
clickable: true,
},
loop: true,
});
本文标签: javascriptSwiper js showing 3 identical slides when there is one slideStack Overflow
版权声明:本文标题:javascript - Swiper js showing 3 identical slides when there is one slide - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743655348a2517028.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论