因此,当我单击动态显示的图像时,我想对其进行缩放。我正在使用cordova和materializecss。我想使用materialbox函数。 (materialbox here)我已经尝试了很多方法,但是没有弄清楚。这是我的简化代码: 显示图像:
function createHtmlGall(imgTab) {
let htmlGall = ""
imgTab.forEach(function(element) {
htmlGall += '<div class="col s12 m4 l3">'
htmlGall += '<img src="' + element + '" class="materialbox responsive-img card">'
htmlGall += '</div>'
})
$( "#imagesDiv" ).html(htmlGall)
}
试图在点击时设置缩放效果:
$(document).on( "click", ".materialbox").materialbox()
如果可能,我想使用jquery。