fancybox打开外部蓝图样式页面时如何设置合适的宽度?

发布于 2024-11-02 04:31:03 字数 810 浏览 1 评论 0原文

我正在设计一个 ruby​​-on-rails 应用程序,并且有一个在 fancybox 中打开的外部页面的链接。

外部页面的样式采用蓝图的 24 列宽度(950 像素宽)。 我从该页面隐藏了宽元素(在 css 中为 display:none),以便我感兴趣的元素在 fancybox 中只有 250px 宽。

但是当它在 fancybox 中打开时,它似乎仍然读取 .span-24 属性,而不是以较小的尺寸打开。

我无法创建另一个外部页面,必须使用蓝图样式的页面。关于如何强制 fancybox 打开、居中、作为 250px 宽的框有什么建议吗?

编辑:

这是我当前使用的代码:

$(document).ready(function() {

    $("a#fancypants-1").fancybox({
        'autodimensions'    : true,
        'width'             : 250,
        'scrolling'         : 'no',
        'opacity'          : true,
        'overlayShow'       : true,
        'overlayColor'      : '#000',
        'overlayOpacity'    : 0.8,
        'transitionIn'      : 'elastic',
        'hideOnContentClick': false ,
        'transitionOut'     : 'none'
    });
});

I'm styling a ruby-on-rails app and I've got a link to an external page which opens in fancybox.

The external page is styled with blueprint's 24 column width (950px wide).
I've hidden the wide elements (display:none in css) from that page so that the elements I'm interested in are only 250px wide in fancybox.

But when it opens in fancybox it somehow still seems to read the .span-24 attribute rather than opening at the smaller size.

I can't create another external page and must use the blueprint styled one. Any advice on how to force fancybox to open, centered, as a 250px wide box?

Edit:

Here is the code I'm currently using:

$(document).ready(function() {

    $("a#fancypants-1").fancybox({
        'autodimensions'    : true,
        'width'             : 250,
        'scrolling'         : 'no',
        'opacity'          : true,
        'overlayShow'       : true,
        'overlayColor'      : '#000',
        'overlayOpacity'    : 0.8,
        'transitionIn'      : 'elastic',
        'hideOnContentClick': false ,
        'transitionOut'     : 'none'
    });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂ガ小子 2024-11-09 04:31:03

尝试像这样

$.fancybox({

                    'autoDimensions'  : true,
                'height': 'auto',
                            'width':250px; 
                'scrolling' : 'no',
                'transitionIn'    : 'none',
                'transitionOut'    : 'none',                    

            });

try like this

$.fancybox({

                    'autoDimensions'  : true,
                'height': 'auto',
                            'width':250px; 
                'scrolling' : 'no',
                'transitionIn'    : 'none',
                'transitionOut'    : 'none',                    

            });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文