Viewing 1 replies (of 1 total)
  • Theme Author Kaira

    (@kaira)

    Yes… you’d need to create a child theme and then edit the /js/custom.js file… edit the “duration”:

    function alba_home_slider() {
            var home_slider_auto = $('#alba-home-slider-wrapper').data('auto');
            var home_slider_circular = $('#alba-home-slider-wrapper').data('circular');
            var home_slider_infinite = $('#alba-home-slider-wrapper').data('infinite');
    
            $("#alba-home-slider").carouFredSel({
                responsive: true,
                circular: home_slider_circular,
                infinite: home_slider_infinite,
                width: 1200,
                height: 'variable',
                items: {
                    visible: 1,
                    width: 1200,
                    height: 'variable'
                },
                onCreate: function(items) {
                    $("#alba-home-slider-wrapper").removeClass("alba-home-slider-remove");
                },
                scroll: {
                    fx: 'uncover-fade',
                    duration: 450   <-----------------------------
                },
                auto: home_slider_auto,
                pagination: '#alba-home-slider-pager',
                prev: "#alba-home-slider-prev",
                next: "#alba-home-slider-next"
            });
        }

Viewing 1 replies (of 1 total)
  • The topic ‘Slider Timing’ is closed to new replies.