• Ed Coyne

    (@angelopc)


    Is there a way to increase or decrease the slider “display” and transition times?

Viewing 2 replies - 1 through 2 (of 2 total)
  • It is set in in milliseconds in the javascript at

    /wp-content/themes/engrave-lite/lib/scripts/plugins/ResponsiveSlides/responsiveslides-call.js

    //———————————————————————————-
    // HOMEPAGE RESPONSIVE SLIDER
    //———————————————————————————-

    // Control ThinkUpSlider features
    jQuery(document).ready(function() {
    jQuery(“.rslides-inner .slides”).responsiveSlides({
    auto: true, // Boolean: Animate automatically, true or false
    speed: 500, // Integer: Speed of the transition, in milliseconds
    timeout: 8000, // Integer: Time between slide transitions, in milliseconds
    pager: true, // Boolean: Show pager, true or false
    nav: true, // Boolean: Show navigation, true or false
    random: false, // Boolean: Randomize the order of the slides, true or false
    pause: true, // Boolean: Pause on hover, true or false
    pauseControls: true, // Boolean: Pause when hovering controls, true or false
    prevText: “Previous”, // String: Text for the “previous” button
    nextText: “Next”, // String: Text for the “next” button
    maxwidth: “”, // Integer: Max-width of the slideshow, in pixels
    navContainer: “”, // Selector: Where controls should be appended to, default is after the ‘ul’
    manualControls: “”, // Selector: Declare custom pager navigation
    namespace: “rslides”, // String: Change the default namespace used
    before: function(){}, // Function: Before callback
    after: function(){} // Function: After callback
    });
    });

    Theme Author ThinkUpThemes

    (@thinkupthemes)

    You can change the ThinkUpSlider transition times by adding some custom jQuery from the theme options panel under General Settings -> Custom jQuery. Add the following to change the transition time to 1 second. Adjust the value of the timeout (in ms) to whatever you prefer (1 second = 1000 ms):

    jQuery(window).load(function(){
    jQuery(".rslides-inner .slides").responsiveSlides({
    timeout: 1000
    });
    });
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change ThinkUpSlider Transition Times’ is closed to new replies.