Juergen
Juergen

Reputation: 73

jQuery Tools - Slideshow

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

Upvotes: 3

Views: 2088

Answers (3)

Flakron Bytyqi
Flakron Bytyqi

Reputation: 3254

$(".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();

Upvotes: 1

Alex Mathew
Alex Mathew

Reputation: 1554

Hey You Should Read this
http://flowplayer.org/tools/documentation/scripting.html#events its says about it and also
http://flowplayer.org/tools/tabs/index.html is also saying

Upvotes: 0

Reigel Gallarde
Reigel Gallarde

Reputation: 65264

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

look for initialIndex in the configuration property...

Upvotes: 2

Related Questions