小程序容器根据比例适应图片

2018/03/06 14:55
阅读数 88
AI总结
<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 }) } }) },

 

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
AI总结
返回顶部
顶部