我正在尝试熟悉 jQuery 工具 - Flowplayer 的幻灯片(http://flowplayer.org/tools/tabs/slideshow.html)。有没有人提示我如何选择例如 tab2 作为启动默认值,或者如何在启动时切换到另一个选项卡?
提前致谢,
于尔根
我正在尝试熟悉 jQuery 工具 - Flowplayer 的幻灯片(http://flowplayer.org/tools/tabs/slideshow.html)。有没有人提示我如何选择例如 tab2 作为启动默认值,或者如何在启动时切换到另一个选项卡?
提前致谢,
于尔根
http://flowplayer.org/tools/tabs/index.html
initialIndex
在配置属性中查找...
$(".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();
嘿,你应该阅读这个
http://flowplayer.org/tools/documentation/scripting.html#events
它说它和
http://flowplayer.org/tools/tabs/index.html也说