您的当前位置:首页正文

小程序swiper实现点击暂停和播放

2024-12-01 来源:个人技术集锦

wxml部分:

<swiper autoplay="{{autoplay}}">

     <swiper-item></swiper-item>

</swiper>

 

js部分:

Page({

  data: {

    autoplay: "true"

     }

点击事件名: function (e) { 

    this.setData({

      autoplay: !this.data.autoplay

    })

  }

})

显示全文