You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Tabs and Slideshow - Autoplay Created Nov 13, 2009

This thread is solved

Views: 6900     Replies: 6     Last reply May 24, 2010  
You must login first before you can use this feature

MacBee
I'm French... Sorry for my bad English, I use ' Google Translator' or other... but that remains that tools Wink

Posts: 8

Registered:
Aug 5, 2009

Tabs and Slideshow - Autoplay

Posted: Nov 13, 2009

Hi,

Thank you for this great work on jQueryTools.

I would like (in the example 'SlideShow Tabs plugin for the tags') obtaining an auto-scroll.
I have changed the configuration as :


$("div.tabs").tabs(".images > div", { 
 
        // enable "cross-fading" effect 
        effect: 'fade', 
        fadeOutSpeed: "slow",

        //Enable autoplay
        autoplay: true,
 
        // start from the beginning after the last tab 
        rotate: true 
 
    // use the slideshow plugin. It accepts its own configuration 
    }).slideshow();

Also if I change the settings, they are not supported.
Example :

...
        effect: 'ajax', 
        fadeOutSpeed: 3000,

...

Can you give me an indication to run this plugin automatically, with other effects?

Thank
Marc.

gord

Posts: 1

Registered:
Dec 3, 2009

» Tabs and Slideshow - Autoplay

Posted: Dec 3, 2009

Reply to: Tabs and Slideshow - Autoplay, from MacBee
Your autoplay configuration is in the wrong place.

$("div.tabs").tabs(".images > div", {  
  
        // enable "cross-fading" effect  
        effect: 'fade',  
        fadeOutSpeed: "slow", 
 
        //Enable autoplay
  
        // start from the beginning after the last tab  
        rotate: true  
  
    // use the slideshow plugin. It accepts its own configuration  
    }).slideshow({autoplay: true}); 

MacBee
I'm French... Sorry for my bad English, I use ' Google Translator' or other... but that remains that tools Wink

Posts: 8

Registered:
Aug 5, 2009

» » Tabs and Slideshow - Autoplay

Posted: Dec 6, 2009

Reply to: » Tabs and Slideshow - Autoplay, from gord
Thanks

it's good

garyh357

Posts: 1

Registered:
Mar 14, 2010

» » » Tabs and Slideshow - Autoplay

Posted: Mar 14, 2010

Reply to: » » Tabs and Slideshow - Autoplay, from MacBee
1. How can I make it hold on a tab a little longer?

2. How can I make it stop when a tab button or prev/next button is clicked? It already holds as long as your mouse is over the button, but if you move your mouse off the tab slider area, it starts playing again.

hahaha

Posts: 11

Registered:
Apr 18, 2010

» » Tabs and Slideshow - Autoplay

Posted: May 10, 2010

Reply to: » Tabs and Slideshow - Autoplay, from gord
Didn't you miss the
});

at the very end? ;-)

MacBee
I'm French... Sorry for my bad English, I use ' Google Translator' or other... but that remains that tools Wink

Posts: 8

Registered:
Aug 5, 2009

» » » Tabs and Slideshow - Autoplay

Posted: May 20, 2010

Reply to: » » Tabs and Slideshow - Autoplay, from hahaha
No
This code is good ;)

greggo

Posts: 3

Registered:
Jul 28, 2009

Has this cahnged with v1.2.2?

Posted: May 24, 2010

Reply to: » Tabs and Slideshow - Autoplay, from gord
I have the following code which was working before and no longer is with v1.2.2


<script language="JavaScript"> 
// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready
$(function() {
 
$(".slidetabs").tabs(".images > div", {
 
	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",
 
	// start from the beginning after the last tab
	rotate: true
 
// use the slideshow plugin. It accepts its own configuration
}).slideshow({ autoplay: true, interval: 10000});
});
</script>