简单的模式调整大小和居中?
我正在使用 simplemodal 来调出一个包含一些内容的模式。
在该内容中,我正在对其他一些内容进行 ajax 调用,这些内容的大小与原始内容不同(小得多),
我正在做的工作是使用 jQuery 来更改模式容器的大小。
在我的 ajax 调用的 oncomplete 部分中,我使用以下 jquery,
jQuery("#simplemodal-container").animate({ height: 550 }, 500);
jQuery("#simplemodal-container").animate({ width: 493}, 500);'
这有两个问题。
在不同的浏览器中,宽度略有不同,因此模式内容看起来不太正确,
并且模式保持其原始位置。它不会在浏览器窗口中重新居中。
有谁知道如何根据开放模式内的新内容调整 simplemodal 的大小?
非常感谢。
I am using simplemodal to bring up a modal with some content in it.
Inside that content i am making a ajax call to some other content which is a different size from the original content (quite a bit smaller)
what i'm doing that is kind of working is using jQuery to change the size of the modal container.
in the oncomplete section of my ajax call i use the following jquery
jQuery("#simplemodal-container").animate({ height: 550 }, 500);
jQuery("#simplemodal-container").animate({ width: 493}, 500);'
there is two problems with this.
in different browsers the width is slightly different so the modal content doesn't look quite right
and the modal maintains it's original position. it doesn't recenter itself in the browser window.
does anyone know how to resize simplemodal based on new content inside of a open modal?
thanks very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我的 SimpleModal 自动宽度/高度和居中模式代码:
工作 IE、FireFox 和 Chrome。
My SimpleModal Auto Width/Height and centered modal code:
Working IE,FireFox and Chrome.
下面的示例应该适合您:
An example like the following should work for you:
这是我到目前为止的
功能 modalThree($type) {
var $类型;
我的网站几乎是固定宽度的,我从 ajax 调用中知道内容的大小。
我使用以下
jQuery("#simplemodal-container").animate({ width: 250 }, 0); 调整它的大小
jQuery("#simplemodal-container").animate({"left": "+=200px"}, "fast");
jQuery("#simplemodal-container").animate({"top": "-=50px"}, "fast");
它有点有效,但我想根据窗口大小计算左侧和顶部的距离。
它有效,但我不确定这是否是解决方案。
Here is what I have so far
function modalThree($type) {
var $type;
my site is pretty much a fixed width and i know the size of the content from the ajax call.
i resize it using the following
jQuery("#simplemodal-container").animate({ width: 250 }, 0);
jQuery("#simplemodal-container").animate({"left": "+=200px"}, "fast");
jQuery("#simplemodal-container").animate({"top": "-=50px"}, "fast");
it kind of works but i'd like to calculate how much left and top is has to go based on the window size.
it works but i'm not sure if it is the solution.