//显示图片
showpic:function(pic,width,height) {
if(!width) {width=’600px’}
else {width += ‘px’;}
if(!height) {height=’600px’}
else {height += ‘px’;}
layer.open({
type : 2, //Page层类型
area : [ width, height ],
title : ‘图片显示’,
shade : 0.3, //遮罩透明度
maxmin : true, //允许全屏最小化
anim : 1, //0-6的动画形式,-1不开启
content : pic
});
},
//显示图片
showpicEx:function(pic,imgwidth,imgheight) {
if(!imgwidth) {imgwidth=’600px’}
else {imgwidth += ‘px’;}
if(!imgheight) {imgheight=’600px’}
else {imgheight += ‘px’;}
var winwidth= (imgwidth + 20)+’px’
var winheight= (imgheight + 45)+’px’
var html = “< div id=’showpic’ style=’margin:10px’>< img src=’”+pic+”‘ style=’width:”+imgwidth+”;height:”+imgheight+”‘ />< /div>”;
if($(“#showpic”).length>0) $(“#showpic”).remove();
$(“body”).append(html);
layer.open({
type : 1, //Page层类型
area : [ winwidth, winheight ],
title : ‘图片显示’,
shade : 0.3, //遮罩透明度
maxmin : true, //允许全屏最小化
anim : 1, //0-6的动画形式,-1不开启
content : $(“#showpic”)
});
}