3

我正在尝试熟悉 jQuery 工具 - Flowplayer 的幻灯片(http://flowplayer.org/tools/tabs/slideshow.html)。有没有人提示我如何选择例如 tab2 作为启动默认值,或者如何在启动时切换到另一个选项卡?

提前致谢,

于尔根

4

3 回答 3

2

http://flowplayer.org/tools/tabs/index.html

initialIndex在配置属性中查找...

于 2010-07-28T07:27:28.080 回答
1
$(".slidetabs").tabs(".images > div", {

    // enable "cross-fading" effect
    effect: 'fade',
    fadeOutSpeed: "slow",

    // start from the beginning after the last tab
    rotate: true,

//set your default tab
current: "tab_2" //class name

// use the slideshow plugin. It accepts its own configuration
}).slideshow();
于 2010-07-28T07:28:55.793 回答
0

嘿,你应该阅读这个
http://flowplayer.org/tools/documentation/scripting.html#events 它说它和
http://flowplayer.org/tools/tabs/index.html也说

于 2010-07-28T07:28:53.897 回答