微信小程序 scroll-view 根据内容的高度自适应

微信小程序开发交流qq群   173683895

   承接微信小程序开发。扫码加微信。

正文:

1




  
    111
    111
    111
    111
    111
    111
  

2

.wwww view{
  height: 200rpx;
  background: wheat
}

3

var is_1_height;
Page({

  //生命周期函数--监听页面加载
  onLoad: function(options) {
    var that=this;
    wx.getSystemInfo({
      success: function (res) {
        wx.createSelectorQuery().select('video').boundingClientRect(function (rect) {
          var is_1_height = Number(rect.height) // 节点的宽度
          that.setData({
            height: Number(res.windowHeight) - is_1_height
          });
        }).exec();
      }
    });
  }
})

 

你可能感兴趣的:(微信小程序)