小程序如何获取image对象

小程序如何获取image对象,第1张

小程序开发中,

很多情况下都需要用到图片来显示,

这里族哪链会用到小程序的image组件。

其中有一个src属性,

类缓侍似html中img标兆孙签的src。

image组件的src属性,

wxml部分

<image src="../images/xwbanner.png" mode="widthFix" bindload="imageLoad" style="width:{{ images[index].width }}rpxheight:{{ images[index].height }}rpx" ></image>

wxss部分:烂逗碰

image{

width:100%;

}

js部分:

Page({

data: {

images:{}

},

imageLoad: function(e){

var $width=e.detail.width,//获取饥谈图片真实宽度

$height=e.detail.height,

ratio=$width/$height //图片的真实宽高比例

var viewWidth=718, //设置图片显示宽度,左右留有指孝16rpx边距

viewHeight=718/ratio //计算的高度值

var image=this.data.images

//将图片的datadata-index作为image对象的key,然后存储图片的宽高值

image[e.target.dataset.index]={

width:viewWidth,

height:viewHeight

}

this.setData({

images:image

})

},

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12234677.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存