本文主要介绍如何在微信小程序中实现点击图像放大的功能。本文将详细介绍示例代码,它对您的学习或工作具有一定的参考价值。南京小程序开发建议您可以为您的朋友参考以下内容
WXML:
<view class='imgList'>
<view class='imgList-li' wx:for='{{imgArr}}'>
<image class='img' src='{{item}}' data-src='{{item}}' bindtap='previewImg'></image>
</view>
</view>
WXSS:
.imgList{
width: 100%;
}
.imgList .imgList-li{
width: 100%;
}
.imgList .imgList-li .img{
width: 400rpx;
height: 400rpx;
}
JS:
Page({
data: {
imgArr:[
'https://imgs.developpaper.com/imgs/528aa13209e86d5d9839890967a6b9c1.jpg',
'https://imgs.developpaper.com/imgs/54fcef525fa8f6037d180f3c26f3be65.jpg',
'https://imgs.developpaper.com/imgs/62e3ca3a02dddb002eff00482078d194.jpg',
'https://imgs.developpaper.com/imgs/c7167fcfb4ebcd12621c05b0c852e98e.jpg'
]
},
previewImg:function(e){
console.log(e.currentTarget.dataset.src);
let that = this;
wx.previewImage({
Current: e.currenttarget.dataset.src, // current image address
URLs: that.data.imgarr, // array form of address set of all pictures to preview
})
}
})
以上是
南京小程序开发本文的全部内容。希望对您的学习有所帮助,也希望您能提供更多支持。