我正在使用jQuery Cycle plugin。当我使用'scrollHorz'
作为fx
属性的值时,幻灯片不是以恒定速度移动,而是使用缓动(请参阅demo)。
如何让幻灯片以恒定速度移动?
答案 0 :(得分:3)
只需使用
easing: "linear"
你应该没事! 例如:
$('#s1').cycle({
fx: 'scrollHorz',
easing: 'linear',
prev: '#prev1',
next: '#next1',
timeout: 0
});