jQuery CarouFredSel plugin triggering a configuration

Don*_*kis 1 javascript jquery duration caroufredsel

i have a little problem, everything i think quite good, example is here: a link at bottom of page "Partneriai". The idea is when on mouse over and out on next and previous buttons set a speed (duration) a little bit faster, and when mouse out set speed duration normal (default).

And it's everything working, but the problem is : need to wait when one item is slide over from div, and then is setting a configuration of duration. I need immediately when mouse over, out at next,prev button and set those configuration. I can't find issue.

My code:

$(".sponsors-slider-slide").carouFredSel({
    scroll: {
        items: 1,
        duration: 2000,
        queue: true,
        timeoutDuration: 0,
        easing: "linear",
        pauseOnHover: "immediate-resume",
        fx: "scroll"
    },
    responsive: false,
    circular: true,
    infinite: false,
    swipe: {
        onTouch: true,
        onMouse: true
    },
    width: "variable",
    height: "variable",
    items: {
        visible: 4,
        minimum: 0,
        width: "variable",
        height: "variable"
    },
    align: false,
    debug: false
});
Run Code Online (Sandbox Code Playgroud)

and example of next button:

$("#sponsors-slider-next").on("mouseover mouseout", function(e){

    if(e.type == "mouseover")
    {

        $(".sponsors-slider-slide").trigger("configuration", ["direction", "left"]);
        $(".sponsors-slider-slide").trigger("configuration", ["scroll.duration", 1000, true]);

    }

    if(e.type == "mouseout")
    {
        $(".sponsors-slider-slide").trigger("configuration", ["direction", "left"]);
        $(".sponsors-slider-slide").trigger("configuration", ["scroll.duration", 2500, true]);
    }



    return false;
});
Run Code Online (Sandbox Code Playgroud)

The question is, how to set scroll.duration when mouseover immediately on next button, not when carousel is finish slide ?

Thanks in advice.

tox*_*lot 10

必须在可以更改配置之前完成转换.要立即完成转换,请触发完成事件.

$(".sponsors-slider-slide").trigger('finish');
Run Code Online (Sandbox Code Playgroud)

根据其他设置,这可能会使它看起来有点"毛病",但至少它不会给人留下按钮不起作用的印象.

顺便说一句,链接多个方法而不是重复选择器会更有效:

$(".sponsors-slider-slide")
    .trigger("finish")
    .trigger("configuration", {
        direction: "left",
        scroll: {
            duration: 1000
        },
        reInit: true //not sure that you need this
    });
Run Code Online (Sandbox Code Playgroud)