0

who can help me to make this gallery to autorotate?

Jquery Tools Scrollable

http://flowplayer.org/tools/demos/scrollable/gallery.html

Thanks a lot!

Vic

mu is too short
  • 426,620
  • 70
  • 833
  • 800
Snowalker
  • 309
  • 1
  • 7
  • 16

1 Answers1

0

I think you have to do it yourself with a timer, something like this should do it:

function auto_next() {
    $('#scroller').data('scrollable').next();
    setTimeout(auto_next, 1000); // 1000 == one second
}
auto_next();

You could also use setInterval but then you'd run the risk of your timed events overrunning each other.

References:

mu is too short
  • 426,620
  • 70
  • 833
  • 800