jQuery 淡入淡出 + IE 中淡出?

发布于 2024-08-15 04:07:24 字数 289 浏览 5 评论 0原文

我在 jQuery 的 gtetting fadeIn 和 fadeOut 效果在 IE (6+7+8) 中正常工作时遇到问题。该脚本在 FF 和 safari 中运行良好(淡入淡出效果很好),但在 IE 中它只是显示/隐藏 - 根本没有淡入淡出效果。

有什么想法吗?

$(".myclass ul li:eq(" + $(this).attr("href") + ")").fadeIn(5000); 

它获取的 href 属性只是保存一个表示 ul li 长度中的位置的数值。

I am having a problem with gtetting fadeIn and fadeOut effect of jQuery to work properly in IE (6+7+8). The script works fine in FF and safari (fading nicely) but in IE it just shows/hides - no fading effect at all.

Any ideas?

$(".myclass ul li:eq(" + $(this).attr("href") + ")").fadeIn(5000); 

The href attribute that it is getting is simply holding a numeric value representing the position in the ul li length.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

小苏打饼 2024-08-22 04:07:24

我遇到了同样的问题并使用了下面的代码(来自上面 Q8-coder 发布的链接)。它运作良好,但我仍然遇到一些问题。我注意到,在具有相对或绝对定位子元素的容器元素上使用 fadeTo 在 IE8 中不起作用。父元素将消失,但所有具有正向或相对定位的子元素将保留在视图中。解决这个问题的唯一方法是使用 jQuery 选择容器元素及其所有子元素,然后对所有元素应用 fadeTo。

jQuery.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();  
    }); 
}; 

jQuery.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.fn.fadeTo = 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();  
    }); 
}; 

I had the same issue and used the code below (from the link posted by Q8-coder above). It works well but I still had some issues. I noticed that using fadeTo on a container element which had children with relative or absolute positioning didn't work in IE8. The parent would fade but all the children elements with positive or relative positioning would remain in view. The only way to get around it was to select the container element and all it's children using jQuery and then apply fadeTo all of them.

jQuery.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();  
    }); 
}; 

jQuery.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.fn.fadeTo = 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();  
    }); 
}; 
离线来电— 2024-08-22 04:07:24

尝试这个解决方法

try this workaround.

吻风 2024-08-22 04:07:24

对我来说,使用 fadeIn() 效果很好,我的

在 IE9 上会很好地淡入,然后(一旦淡入完成)它会再次消失。啊。

修复方法是添加此处显示的 filter css 值:

$("#fadeMeIn").fadeIn("slow");
$("#fadeMeIn").css('filter', 'none');

For me, using fadeIn() worked fine, my <div> would nicely fade-in on IE9, then (once the fading was completed) it would disapper again. Ah.

The fix was to add the filter css value shown here:

$("#fadeMeIn").fadeIn("slow");
$("#fadeMeIn").css('filter', 'none');
流绪微梦 2024-08-22 04:07:24

试试这个:

$(".myclass ul li:eq(" + $(this).attr("href") + ")").hide().fadeIn(5000);

Try this:

$(".myclass ul li:eq(" + $(this).attr("href") + ")").hide().fadeIn(5000);
在你怀里撒娇 2024-08-22 04:07:24

我在 IE8 中的脚本中遇到了类似的问题。设置 z-index 后问题就消失了。我找到了下面的解决方案。

http://www.kevinleary.net/jquery-fadein-互联网浏览器中的淡出问题/

I had a similar issue with a script in IE8. After I set the z-index the problem disappeared. I found the solution below.

http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文