1. 程式人生 > >小程序容器根據比例適應圖片

小程序容器根據比例適應圖片

function color data success 設置 this 小程序 ons 高度

<view class="swiper" style="height:{{sHeight}}px">
  </view>



imgLoad:function(){ var that = this; wx.getSystemInfo({ success: function (res) { // 獲取設備寬度 var infoWidth = res.screenWidth-20; console.log(infoWidth)
// 設置比例 var bili = 640/350; // 得到高度 var $height = infoWidth/bili; console.log($height) that.setData({ sHeight: $height }) } }) },

小程序容器根據比例適應圖片