jQuery Cycle 插件:IE 中的白色背景(任何版本)

发布于 2024-11-02 05:44:06 字数 59 浏览 1 评论 0原文

在 IE 中,jQuery Cycle 插件将背景设置为白色...即使我对所有内容都设置了 CSS 透明

in IE jQuery Cycle Plugin sets the background to white... even i have the CSS transparent for everything

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

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

发布评论

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

评论(2

薄荷港 2024-11-09 05:44:06

这是原始问题的正确答案:

将此参数添加到您的 jQuery 中:
cleartypeNoBg:true

所以它应该看起来像这样:

$(document).ready(function() {
    $('#your_div_id').cycle({       
        fx: 'fade',
        cleartypeNoBg:true
    });
});

-W

This is the correct answer to the original question:

Add this param to your jQuery:
cleartypeNoBg:true

so it should look like this:

$(document).ready(function() {
    $('#your_div_id').cycle({       
        fx: 'fade',
        cleartypeNoBg:true
    });
});

-W

累赘 2024-11-09 05:44:06

如果您的 css 具有 rgba 值但仍未显示,那么您应该尝试将其添加到 ie.css 文件中,以获取该特定 div 的

透明背景 IE hack :

background: transparent; 
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#808ED557,endColorstr=#808ED557);

If your css has rgba values and still it is not being displayed then you should try add this to your ie.css file for that particular div

Transparent background for IE hack :

background: transparent; 
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#808ED557,endColorstr=#808ED557);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文