Q
IE中的文本扭曲
2
A
回答
5
IE有一個問題,即一旦修改了DOM的某些部分,就會停止使用消除鋸齒。有一些變通辦法(谷歌爲這些)。我認爲IE9修復了這個問題。
看到這個問題: jQuery fadeIn leaves text not anti-aliased in IE7
連接,在似乎已經死了。
其中這兩個變化可能會幫助(你可以有哪些元素進行實驗,並將其應用到):
myElement.style.filter = '';
或
$(myElement).removeAttr('style');
其他信息: http://reference.sitepoint.com/css/haslayout http://reference.sitepoint.com/css/filter
2
Internet Explorer中擺脫抗鋸齒的!
1
這是一個自定義淡入/淡出/淡入解決您的問題
(function($) {
$.fn.customFadeIn = function(speed, callback) {
$(this).fadeIn(speed, function() {
if(!$.support.opacity)
$(this).get(0).style.removeAttribute('filter');
if(callback != undefined)
callback();
});
};
$.fn.customFadeOut = function(speed, callback) {
$(this).fadeOut(speed, function() {
if(!$.support.opacity)
$(this).get(0).style.removeAttribute('filter');
if(callback != undefined)
callback();
});
};
$.fn.customFadeTo = function(speed,to,callback) {
return this.animate({opacity: to}, speed, function() {
if (to == 1 && jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
})(jQuery);
相關問題
- 1. QTextEdit中的文本扭曲
- 2. IE扭曲JQuery淡入淡出/不透明動畫文本
- 3. 扭曲和扭曲Movieclip
- 4. textField中的扭曲
- 5. 導出透明TChart PNG扭曲文本
- 6. 文本沒有被髮送扭曲
- 7. wpf Richtextbox選擇文本扭曲
- 8. Python的扭曲文檔
- 9. 關於扭曲的文檔
- 10. Python的扭曲:扭曲海螺文件傳輸verifyHostKey
- 11. 修復Leptonica中的本地扭曲1.68
- 12. cuda中的線程/扭曲本地鎖
- 13. Bash腳本捲曲請求與扭曲
- 14. 調用本地(在內存中)扭曲
- 15. 讀取文件,扭曲
- 16. FileSystemWatcher扭曲文件名
- 17. CakePHP中的扭曲關係
- 18. 的Java文件複製扭曲文件
- 19. 如何扭曲Actionscript 3.0中的文本字段?
- 20. 扭曲的adbapi:runInteraction last_insert_id()
- 21. 扭曲的錯誤
- 22. Android扭曲的UI
- 23. 扭曲的Python getPage
- 24. Python扭曲的sendLine()
- 25. 扭曲的python TCP4ServerEndpoint
- 26. 扭曲和ULIMIT
- 27. ImageMagick扭曲
- 28. 扭曲效果
- 29. 學習扭曲
- 30. 背景扭曲
沒有任何解決方案似乎對我有用。 – Neeraj 2011-01-31 12:23:31