更改不会影响模态框的高度和重量
我是 simplemodal 1.3.5 用户。我目前在我的项目中使用两种不同的模式。一种可以使用默认尺寸,但必须更大。我想更改模态宽度和高度,但脚本无法正常工作。可能是什么问题?这是我的脚本...
$('#user_picture').modal({
opacity:80,
overlayCss: {backgroundColor:"#fff"},
minHeight:600,
minWidth: 600,
})
});
I am a simplemodal 1.3.5 user. I am currently using 2 different modals in my project. One is OK with default sizes but one must be bigger. I want to change modals width and height but script does not work somehow. What can be the problem? Here is my script...
$('#user_picture').modal({
opacity:80,
overlayCss: {backgroundColor:"#fff"},
minHeight:600,
minWidth: 600,
})
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不太了解 simplemodal,我的猜测是 minHeight 和 minWidth 仅在调整模态大小时使用。尝试使用 height: 600 和 width:600 手动设置宽度和高度。
编辑:
忘记提及高度和宽度是在containerCss选项中设置的,如下所示:
Without knowing simplemodal that well, my guess would be that the minHeight and minWidth are only used when resizing the modal. Try using height: 600 and width:600 to set the width and height manually.
Edit:
Forgot to mention that height and width are set in the containerCss option like this: