IE 中的文本变形
我使用的是 shinding 引擎,每当我移动一个小工具进行重新定位时,该小工具内的粗体文本就会变形。
Im using shinding engine , and whenever I move one gadget for repositioning, the bold text inside that gadget gets distorted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IE 存在一个问题,即一旦 DOM 的某些部分被修改,它就会停止使用抗锯齿功能。有一些解决方法(谷歌这些)。我认为 IE9 解决了这个问题。
看这个问题:
jQuery fadeIn 在 IE7 中留下未抗锯齿的文本
其中的一些链接似乎已失效。
这两项更改之一可能会有所帮助(您可能需要尝试将它们应用到哪个元素):
或
其他信息:
http://reference.sitepoint.com/css/haslayout
http://reference.sitepoint.com/css/filter
IE has an issue where it stops using anti-aliasing once parts of the DOM are modified. There are some work-arounds (Google for these). I think IE9 fixes the problem.
See this question:
jQuery fadeIn leaves text not anti-aliased in IE7
Some links in that seem dead.
One of these two changes might help (you may have to experiment with which element to apply them to):
or
Other info:
http://reference.sitepoint.com/css/haslayout
http://reference.sitepoint.com/css/filter
在执行 jQuery fade 和您给出的示例等任务时,Internet Explorer 暂时摆脱了抗锯齿功能!
Internet Explorer gets rid of Anti-Aliasing temporarily when performing such tasks as jQuery fade and the example you gave!
这是一个自定义fadeIn/fadeOut/fadeTo来解决您的问题
Here is a custom fadeIn/fadeOut/fadeTo to solve your problem