0

我在使用带有 Vaadin 10 的 swiper 时遇到问题。当我尝试使用带有 vaadin 10 的简单滑块时,它可以正常工作

  • 铬(成功)
  • 歌剧(成功)
  • Mozilla(失败)
  • 边缘(失败)

这是我的示例代码:

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,
        },
    });
};

当我使用带有原始 html 的 swiper 时,它工作正常。有什么建议吗?

失败

4

0 回答 0