So I know it is possible to do this fade-in/fade-out effect with jQuery UI Tabs. And this is the code I have to do it:

$("#Tabs").tabs({ fx: [{ opacity:'hide', duration:1000 },
                       { opacity:'show', duration:1000 }] });

This will fade out current tab completely and only then start fading in the new one, so you end up with this blank space for a split second.

What I actually need is more of a cross-fade effect, meaning that when I click on another tab, the fading in of a new tab would start at the same time as fading out of the current one.

link|improve this question

58% accept rate
feedback

2 Answers

Ouch. Just spent the last thirty minutes trying to get UI Tabs and Cycle to play nicely, without much luck. What I ended up with is this demo.

You will be disappointed that there are no tabs, but it should be fairly easy to cheat and make those links look like tabs (I'm still trying, I would like this myself).

link|improve this answer
feedback

Sorry, looks like it is not possible since this ticket hasn't been completed:

http://bugs.jqueryui.com/ticket/3927

link|improve this answer
1  
Did not make any difference. – moose-in-the-jungle Mar 30 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.