Nivo Slider

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 anos atrás
Hi,

Wondering if anyone is able to advise how to change the number of seconds before the Nivo slider image changes?

Thanks,
Rachel
7 anos atrás
Hi Rachel,


Please look into this location: \Plugins\Widgets.NivoSlider\Scripts\jquery.nivo.slider.js

In the JS file, you can look for these settings:

//Default settings
    $.fn.nivoSlider.defaults = {
        effect: 'random',
        slices: 15,
        boxCols: 8,
        boxRows: 4,
        animSpeed: 500,
        pauseTime: 3000,
        startSlide: 0,
        directionNav: true,
        controlNav: true,
        controlNavThumbs: false,
        pauseOnHover: true,
        manualAdvance: false,
        prevText: 'Prev',
        nextText: 'Next',
        randomStart: false,
        beforeChange: function () { },
        afterChange: function () { },
        slideshowEnd: function () { },
        lastSlide: function () { },
        afterLoad: function () { }
    };



You can change these settings as per your needs.


For your question, you need to look into these 2 settings:


animSpeed: 500,                 // Slide transition speed
pauseTime: 3000,                 // How long each slide will show
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.