gpt4 book ai didi

jquery - 使用 jQuery 时 Internet Explorer 7 中的淡入淡出问题

转载 作者:行者123 更新时间:2023-12-01 01:58:44 25 4
gpt4 key购买 nike

我在我正在开发的网站上使用 jQuery,一切正常 - 除了 Internet Explorer 7(和以前的版本,但该网站不支持它们)。看看http://dev.staffanestberg.com/fromsweden/无论是在 Safari 或 Firefox 中,还是在 IE7 中,您都会明白我的意思。我目前正在使用内置效果 FadeTo 来淡入淡出内容,但我也尝试过创建自定义效果以及使用显示/隐藏、动画和 FadeUp/FadeDown。我也在这个网站上使用SWFaddress,这可能会导致与IE7结合出现错误,但在其他浏览器中不会也会出现吗?我错过了什么?

-工作人员

最佳答案

字体 Cleartype 淡入淡出 jQuery 问题

This是对确切问题的一个很好的解释。它与 IE 中的 clear type 字体有关。这是我使用过的修复方法。

示例:

// This causes this text glich
$("#message").fadeIn();

// This will fix it
document.getElementById("#message").style.removeAttribute("filter");

修复是删除过滤器。

$('#message').fadeIn(function(){
this.style.removeAttribute("filter");
});

Source

关于jquery - 使用 jQuery 时 Internet Explorer 7 中的淡入淡出问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/652286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com