I have a problem with using swiper with Vaadin 10. When i tried simple slider with vaadin 10 and it works fine with
- Chrome(Succes)
- Opera(Succes)
- Mozilla(Failed)
- Edge(Failed)
Here is my sample code:
function slideIni(container) {
var mySwiper = new Swiper(container, {
// Optional parameters
direction: 'horizontal',
loop: true,
effect: 'coverflow',
speed: 1500,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
coverflowEffect: {
rotate: 15,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true,
},
});
};
When i use swiper with raw html its works fine. Any advice ?