0

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 ?

Fail

batgerel.e
  • 837
  • 1
  • 10
  • 31
  • Could you explain what the issue is that you are running into? Does your app otherwise work fine in Edge and FF except for the swipe plugin? – Marcus Hellberg Mar 19 '18 at 14:47
  • I need some slide show view into my project. And it's works all browsers except FF and Edge. My project is fine without swipe. And i don;t know what did i do wrong. Anyways app is good only swiper broke on FF and Edge – batgerel.e Mar 20 '18 at 01:13
  • So do you see any errors in the dev console? Is this third party webcomponent (i assume?) simply not supported for those browsers? – cfrick Mar 20 '18 at 08:26
  • Nope, Don't see any error. – batgerel.e Mar 21 '18 at 01:21

0 Answers0