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/…
Indexhibit version: 2.0
Thread is not resolved.
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/…
Hey this is great! Thanks for sharing!
Haven't looked at the code but it works...
Basically I just added a timer to the javascript file and cut an pasted existing controls (then modified) for the settings section.
Thanks eldopa!
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
It looks like you're on the right path.
Try increasing it and tell us how it goes.
ok, thanks
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
oh, it's difficult to link.
link again.
leetomic.com
Thanks, it works great!
I found a bug in the jquery.slideshow.js file. I fixed it by changing this:
if (auto_play == true) { ap_interval = ap_interval * 1000; window.setInterval(autoPlay, ap_interval); function autoPlay() { next(); }}to this:
if (auto_play == true) { ap_interval = ap_interval * 1000; function autoPlay() { next(); } window.setInterval(autoPlay, ap_interval);}You need to be logged in to post.