文本在滑入下一个时折叠,即使用jquery滑动器

时间:2018-08-29 12:30:18

标签: swiper

在使用jquery swiper滑动到下一个文本时,文本折叠了。ie的速度很慢。

有人可以帮我修复它吗enter image description here

下面是我的刷卡初始化

     var swiper= new Swiper('.listing-slider', {
      direction: 'horizontal',
      speed: 300,
      watchActiveIndex: false,
      keyboardControl: false,
      // threshold : 50,
      spaceBetween: 25,
      noSwipingSelector: 'a,button',
      loop: false, replaceState: true,
      observer: true,
      freeModeMomentum:false,
      freeModeMomentumBounce:false,
      preventClicks: true,
      initialSlide: i,
      mousewheelControl: false,
      useCSS3Transforms: true,
    onSlideChangeStart: function (event) {
      $('li.touch-event').off('click, touchstart, touchmove, touchend');
      $('li.touch-event').off('click, touchstart, touchmove, touchend');

        onListingSlideChangeEnd(event);
    },

    onTransitionEnd: function (event) {
      onListingSlideChangeEnd(event);


    },

    });

0 个答案:

没有答案