gpt4 book ai didi

jquery - jQuery fadeIn 后,字体在 IE 中看起来不正确

转载 作者:行者123 更新时间:2023-12-01 07:03:08 26 4
gpt4 key购买 nike

当我将内容动态加载到 div 和 fadeIn(或 show 或 SlideDown)中时,字体在 IE 中看起来不太清晰。不过,预加载内容的字体看起来不错。

我注意到 IE 中的 scriptaculous 也发生了这种情况。

有人有什么想法吗?

在 Firefox 中没有问题。

谢谢!

最佳答案

这将在 v1.3 中工作:

$('#foo').fadeOut(function() {
if (! $.support.opacity) {
this.style.removeAttribute('filter');
}
});

在早期版本中,您需要执行以下操作:

$('#foo').fadeOut(function() {
if ($.browser.msie) {
this.style.removeAttribute('filter');
}
});

关于jquery - jQuery fadeIn 后,字体在 IE 中看起来不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/526243/

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