小程序swiper图片自适应高度

WXML: 

  
           
             
                 
             

           

   

WXSS:

.swipe_container{
  width:100%;

}
.slide-image{
  width:100%;
}

JS:

Page({
  data: {
    imgArray:[],
    indicatorDots: true,
    autoplay: true,
    interval: 5000,
    duration: 1000,
    height:0
  },
  setContainerHeight:function(e){
    var sysInfo = wx.getSystemInfoSync();//同步获取设备宽度
    var screenWidth = sysInfo.screenWidth; //获取屏幕的宽度
    var scale=(screenWidth * 2)/3
    this.setData({
      height: scale
    })
  },
})

 

你可能感兴趣的:(小程序swiper图片自适应高度)