jQuery UI Tabs - Available fx options

前端 未结 2 607
礼貌的吻别
礼貌的吻别 2020-12-05 17:56

I haven\'t been able to find any real documentation on this, so I\'m wondering if anyone knows all of the available fx options for jQuery UI Tabs?

The only ones I\'v

相关标签:
2条回答
  • 2020-12-05 18:11
    opacity: "toggle";
    height: "toggle";
    width: "toggle";
    
    0 讨论(0)
  • 2020-12-05 18:23

    Basically the fx option is used to call animate, you can specify a single option or two in an array, that will be used to do the show and hide effects:

     $('#tabs').tabs({ fx: [{opacity:'toggle', duration:'normal'},   // hide option
                            {opacity:'toggle', duration:'fast'}] }); // show option
    

    The fx speed can be specified using a duration member on the option object.

    Basically you can do the same transformations that you can with animate.

    Give a look to the ui.tabs.js file, on the line 250 here, to understand better how the animations are setup.

    0 讨论(0)
提交回复
热议问题