Indexhibit

Login:

Created by:
Daniel Eatock &
Jeffery Vaska

Built with Indexhibit

Autoplay for Slideshow format

 

Indexhibit version: 2.0
Thread is not resolved.

eldopa
UNITED STATES
4 month(s) ago
Permalink Post

I added code to the Slideshow format for the the show to advance automatically.
Controls for turning on/off the auto play and the interval are in the options.

Check it out here.
apodle.com/dld/…

arsondpi A
GREECE
4 month(s) ago
Permalink Post

Hey this is great! Thanks for sharing!
Haven't looked at the code but it works...

eldopa
UNITED STATES
4 month(s) ago
Permalink Post

Basically I just added a timer to the javascript file and cut an pasted existing controls (then modified) for the settings section.

yabsan
FRANCE
4 month(s) ago
Permalink Post

Thanks eldopa!

yabsan
FRANCE
4 month(s) ago
Permalink Post

Beginner question:
Is it possible to have a smoother fading effect ? How can it be done ? i checked the js file and found this line:
if ((fade == true)).......{ duration: 1000; }
Is it the place where i can change the values?
thks
    

arsondpi A
GREECE
4 month(s) ago
Permalink Post

It looks like you're on the right path.
Try increasing it and tell us how it goes.

yabsan
FRANCE
4 month(s) ago
Permalink Post

ok, thanks

Leetomic
UNITED STATES
3 month(s) ago
Permalink Post

hi, i love this. and it is something i really want to get.
and it works really well in Safari but it's not working in chrome on mac.

here is my website.
leetomic.com

Leetomic
UNITED STATES
3 month(s) ago
Permalink Post

oh, it's difficult to link.
link again.

leetomic.com

bipster
SPAIN
3 week(s) ago
Permalink Post

Thanks, it works great!

bipster
SPAIN
3 week(s) ago
Permalink Post

I found a bug in the jquery.slideshow.js file. I fixed it by changing this:

  1. if (auto_play == true) {
  2.     ap_interval = ap_interval * 1000;
  3.     window.setInterval(autoPlay, ap_interval);
  4.     function autoPlay() { next(); }
  5. }

to this:

  1. if (auto_play == true) {
  2.     ap_interval = ap_interval * 1000;
  3.     function autoPlay() { next(); }
  4.     window.setInterval(autoPlay, ap_interval);
  5. }
Showing 1 - 11 of 11 posts in Forum » Customize » Autoplay for Slideshow format
 

You need to be logged in to post.