layer.open弹层查看缩略图的原图,自适应大小的实例
程序员文章站
2023-12-02 15:30:58
很多时候需要查看缩略图的原图,那么layer.open是一个不错的选择
直接上代码
//查看原图
function showimg(url){
//al...
很多时候需要查看缩略图的原图,那么layer.open是一个不错的选择
直接上代码
//查看原图 function showimg(url){ //alert(url); var img_infor = "<img src='" + url + "' />"; layer.open({ type: 1, closebtn: 1, shade: false, title: false, //不显示标题 //skin: 'layui-layer-nobg', //没有背景色 shadeclose: false, area:['auto','auto'], //area: [img.width + 'px', img.height+'px'], content: img_infor //捕获的元素,注意:最好该指定的元素要存放在body最外层,否则可能被其它的相对元素所影响 //cancel: function () { //layer.msg('图片查看结束!', { time: 5000, icon: 6 }); //} }); }
前提是要知道img的src
好了,ok!
以上这篇layer.open弹层查看缩略图的原图,自适应大小的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。