/*彈出圖片*/ function previewImg(url) { var imgHtml = "<img src='" + url + "' style='width:100%; max-width:100%;'/>"; // 建立對象 var img = new Image(); img.src = url; layer.open({ type: 1, shade: 0.5, area: [img.width + 'px', img.height + 'px'], shadeClose: true, scrollbar: false, title: false, //顯示標題 content: imgHtml, //捕獲的元素,注意:最好該指定的元素要存放在body最外層,不然可能被其它的相對元素所影響 cancel: function () { //layer.msg('捕獲就是從頁面已經存在的元素上,包裹layer的結構', { time: 5000, icon: 6 }); } }); }
// 建立對象 var img = new Image(); img.src = url; area: [img.width + 'px', img.height + 'px'],
Done!javascript