<em>@lorixmod 329617 wrote:</em><blockquote>Lite JA Slideshow: how to increase the transition time between slides and the other one? When you set it on Autoplay</blockquote>
I don’t have Zite & I not a mod just so that you are aware!
Looking at the demo this comes from javascript and I’d look in ja_zite/modules/mod_jaslideshowlite/assets/ and check the js there. I’m not sure which file it will be but the iefix is for IE specifically.
I think the transition would be the duration so you may want to play with that (take a backup first for safety) – it’s in milliseconds I would think.
window.addEvent('domready', function(){
window.jassliteInst = window.jassliteInst || [];
window.jassliteInst.push(new JASliderCSS('ja-ss-113', {
interval: 5000,
duration: 2200,
repeat: true,
autoplay: 0,
navigation: 1,
thumbnail: 0, urls:['#','','','#','','','#','','','#','',''], targets:['','','','','','','','','','','',''] })); });
Hope that helps!