I'm currently in the process of setting up a carousel using swiper.js and here is my setup:
{
slidesPerView: 1,
slidesPerColumn: 1,
initialSlide: this.initialSlide,
loop: true
}
As expected, I'm encountering an issue where duplicated slides are being added near the first and last elements. When swiping from the first to the last element, instead of showing the actual last slide, it displays a blank duplicated slide. It appears that the duplication of slides is causing some issues due to the removal of "src" attributes from <img>
tags. Any ideas on how to resolve this?
Your suggestions would be greatly appreciated.
P.S. I am utilizing the ngx-swiper-wrapper library for Angular instead of directly working with swiper.js