- 注册时间
- 2013-2-6
- 最后登录
- 2015-3-17
- 阅读权限
- 10
- 积分
- 222
- 精华
- 0
- 帖子
- 58
|
我现在打开一个子页面,里面有一张图片,如何做到弹出框和图片显示比例是一样的?就是图片在弹出框里能完全显示出来,我没看到open里有设置图片大小的属性,下面是我的代码,麻烦帮我看下,应该如何实现?
<img alt="图片" id="capture1" style="border:0;width:100px;height:100px;" />
function test(imgUrl)
{
mini.open({
url : imgUrl,
title : "图片",
width : 800,
height : 600,
allowResize: true, //允许尺寸调节
allowDrag: true, //允许拖拽位置
showCloseButton: true, //显示关闭按钮
showMaxButton: true, //显示最大化按钮
});
}
|
|