Search code examples
javascriptcoda-slider

Change the sliding speed of Coda Slider 1.1.1


I have a wordpress template that makes use of Coda Slider 1.1.1, and although I have figured out how to make it transition less frequently, I can't figure out how to change the physical speed at which the elements slide across the screen. I'm looking at the coda-slider.1.1.1.pack.js file but can't see it in there...


Solution

  • you can adjust the slide speed with that:

    $().ready(function() {
        $('#coda-slider').codaSlider({
            autoSlide: true,
            autoSlideInterval: 4000,
        });
    });
    

    Cheers, Stefan