imageload: function (e) {//获取图的高度 var that = this; var winwid = wx.getSystemInf..._微信小程序 如何获得图片高度">
当前位置:   article > 正文

微信小程序获取图片的高度之彩笔计划_微信小程序 如何获得图片高度

微信小程序 如何获得图片高度

给图片绑定bindload事件
bindload解释

<image bindload="imageload" wx:else src="{{item.picurl}}" mode="widthFix" />
  • 1
  imageload: function (e) {//获取图的高度
    var that = this;
    var winwid = wx.getSystemInfoSync().windowWidth;//获取当前屏幕宽度
    var imgh = e.detail.height;
    var imgw = e.detail.width;
    var swiperh = winwid * imgh / imgw + "px";//像素单位可自行修改
    console.log(swiperh);
    that.setData({
      imgh: swiperh,
    })
  },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

这样就获取图片的高度!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/675212
推荐阅读
相关标签
  

闽ICP备14008679号