fancybox关闭按钮在缩小fancybox css后消失

发布于 2024-10-28 12:19:29 字数 842 浏览 3 评论 0原文

所以我使用 fancybox 以及 Google 的 minify http://code.google.com/p/ minify/

但是在缩小 fancybox css 后,当我单击 fancyboxed 的某些内容时,fancybox 上的关闭按钮就会从中消失...

我检查了缩小的 css 源代码,似乎没有close 属性有什么问题吗:

#fancybox-close{position:absolute;top: -15px;right: -15px;width:30px;height:30px;background:transparent url('/jqui/plugins/fancybox/fancybox/fancybox.png') -40px 0px;cursor:pointer;z-index:1103;display:none}

与正常版本相比,

#fancybox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: transparent url('fancybox.png') -40px 0px;
    cursor: pointer;
    z-index: 1103;
    display: none;
}

有谁知道如何使 fancybox 关闭按钮仍然工作,尽管使用谷歌的 minify 缩小 css...

没有缩小,一切正常

so I'm using fancybox, as well as Google's minify http://code.google.com/p/minify/

but then after minifying the fancybox css, when I click on something that is fancyboxed, the close button on the fancybox disappears from it...

I checked the minified css source code, and there doesn't seem to be anything wrong with the close property:

#fancybox-close{position:absolute;top: -15px;right: -15px;width:30px;height:30px;background:transparent url('/jqui/plugins/fancybox/fancybox/fancybox.png') -40px 0px;cursor:pointer;z-index:1103;display:none}

versus the normal version

#fancybox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: transparent url('fancybox.png') -40px 0px;
    cursor: pointer;
    z-index: 1103;
    display: none;
}

does anyone know how to make fancybox close button still work despite minifying css using google's minify...

without minification, everything works correctly

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

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

发布评论

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

评论(1

此生挚爱伱 2024-11-04 12:19:29

图像路径可能是错误的,尝试给它一个 background:red 或其他东西,看看它是否显示。

The image path is probably wrong, try giving it a background:red or something and see if it shows up.

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