jQuery 工具 - 幻灯片

发布于 2024-09-12 06:02:21 字数 252 浏览 9 评论 0原文

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

预先致谢,

于尔根

I am trying to get familar with the jQuery Tools - Slideshow from Flowplayer (http://flowplayer.org/tools/tabs/slideshow.html). Has anybody a hint for me how to select e.g. tab2 as start default, or how to switch to another tab when starting?

Thanks in advance,

Juergen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

雨的味道风的声音 2024-09-19 06:02:21

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

查找 <配置属性中的 code>initialIndex...

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

look for initialIndex in the configuration property...

骄兵必败 2024-09-19 06:02:21
$(".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();
$(".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();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文