function(){
img = ‘url’;
layer.open({
type: 2,//1:本地 2:url
title: ‘图片查看’,
shadeClose: true,
shade: 0.6,//遮罩层
area: [‘90%’, ‘90%’],
anim:1,//动画 -1不显示
content: img
});
}
Layer动态加载图片
最新推荐文章于 2024-08-15 11:02:18 发布
function(){
img = ‘url’;
layer.open({
type: 2,//1:本地 2:url
title: ‘图片查看’,
shadeClose: true,
shade: 0.6,//遮罩层
area: [‘90%’, ‘90%’],
anim:1,//动画 -1不显示
content: img
});
}