jQuery Cycle插件:以恒定速度水平滚动幻灯片,无需缓和

时间:2012-10-12 08:57:51

标签: javascript jquery animation jquery-cycle easing

我正在使用jQuery Cycle plugin。当我使用'scrollHorz'作为fx属性的值时,幻灯片不是以恒定速度移动,而是使用缓动(请参阅demo)。

如何让幻灯片以恒定速度移动?

1 个答案:

答案 0 :(得分:3)

只需使用

easing: "linear"

你应该没事! 例如:

$('#s1').cycle({ 
    fx:     'scrollHorz', 
    easing: 'linear',
    prev:   '#prev1', 
    next:   '#next1', 
    timeout: 0 
});