jquery .hide()。fadeIn()即cleartype故障

时间:2011-12-28 11:43:50

标签: jquery hide fadein cleartype

我在js中添加了这个:

    function customFades() {
    (function($) {
        $.fn.fadeIn = function(speed, callback) {
            return this.animate({opacity: 'show'}, speed, function() {
                if (jQuery.browser.msie) 
                    this.style.removeAttribute('filter'); 
                if (jQuery.isFunction(callback))
                    callback(); 
            });
        };

        $.fn.fadeOut = function(speed, callback) {
            return this.animate({opacity: 'hide'}, speed, function() {
                if (jQuery.browser.msie) 
                    this.style.removeAttribute('filter'); 
                if (jQuery.isFunction(callback))
                    callback(); 
            });
        };


    })
    (jQuery);
}

现在我在使用.hide()。fadeIn();

时遇到了问题

所以我的问题是如何在这个问题上应用相同类型的修复?

1 个答案:

答案 0 :(得分:0)

似乎问题只发生在我链接动画时.hide()。fadeIn();如果我只使用.fadeIn()那么它可以工作..