4

carouFredSel用来制作 Slider,但无法设置持续时间。它可能会默认运行。

我设置为:

$("#foo6").carouFredSel({
    auto: true,
    responsive: true,
    duration: 2000,
    prev: "#prev6",
    next: "#next6",
    scroll: 1,
    pagination: "#pager6",
    mousewheel: true,
    items: {
        visible: 1,
        width: 200
    }
});

说我解决我的问题。

4

2 回答 2

6

尝试

$('#carousel').carouFredSel({
    auto: true,
    responsive: true,
    prev: "#prev6",
    next: "#next6",
    scroll: { items:1,duration: 200}, //set duration here
    pagination: "#pager6",
    mousewheel: true,
    items: {
        visible: 1,
        width: 200
    }
});

小提琴http://jsfiddle.net/code_snips/bTHnL/

于 2013-11-07T10:52:04.183 回答
4

对象内部duration设置scroll滚动动画所需的时间(以毫秒为单位)。要设置元素之间的超时,您需要设置auto为一个数字

所以一个例子:

$('#carousel').carouFredSel({
    auto: 3000, //Set the time between transitions
    scroll : {
        duration: 1000 //The duration of the scroll animation
    }   
});
于 2014-02-20T18:28:47.760 回答