开发者

Jquery UI Fade not working in IE

I'm working with a simple Jquery UI script t开发者_运维知识库hat changes tabs on mouseover and auto rotates. The script functions perfectly in all browsers except IE. In IE the rotate and Mouseover works, but the fade doesn't work. You can view the script at http://www.1tryten.com. It's the main banner that I'm using here. The script I'm using is:

$(document).ready(function() {
 $("#tabs").tabs({
 event: 'mouseover',
 fx: {
    opacity: 'toggle'
     }
 }).tabs('rotate', 5000, true); 
});

Any thoughts?


Take a look at this article on opacity in different browsers. IE uses different CSS syntax to set opacity Maybe this could be the cause? Does $("#tabs").fadeIn().fadeOut(); work as expected?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜