小程序开发问题之swiper抖动效果

  • Post author:
  • Post category:小程序


个人的解决方式是不在 bindChange事件回调函数中更新current值,而是在 bindanimationfinish(滑动动画结束调用)事件回调函数中更新current值。

<swiper class="swiper" bindanimationfinish="swiperAnimationListener" >
swiperAnimationListener:function(e){
    this.setData({
      swiperCurrent: e.detail.current
    })
  }



版权声明:本文为u012173922原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。