jQuery工具 - 幻灯片

时间:2010-07-28 07:19:56

标签: jquery flowplayer

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

提前致谢,

尔根

3 个答案:

答案 0 :(得分:2)

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

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

答案 1 :(得分: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();

答案 2 :(得分:0)

相关问题