• I’d like to slow down the transition of slides on the slider so you can read the entire quote before it changes. A pause button might be nice also.

Viewing 1 replies (of 1 total)
  • This is easy to do. You could create a child theme and maintain your own version of js/spacious-slider-setting.js

    jQuery(window).on(‘load’,function() {
    jQuery( ‘.slider-cycle’ ).cycle({
    fx: ‘fade’,
    timeout: 7000,
    speed: 1000,

    slides: ‘> div’,
    pager: ‘> #controllers’,
    pagerActiveClass: ‘active’,
    pagerTemplate: ‘‘,
    pauseOnHover: true,
    autoHeight: ‘container’,
    swipe: true,
    swipeFx: ‘scrollHorz’,
    log: false
    });
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Change slider speed?’ is closed to new replies.