向左滚动动画将不再起作用

时间:2019-04-12 08:02:31

标签: javascript

我有这个:

var box = document.getElementById('scroller');

box.animate( { left: '+=350' }, 1000);

恰好可以滚动回零。

我想制作动画,尝试过:

box.animate( { scrollLeft: '+=350' }, 1000);
$('scroller').animate({ scrollLeft: 0 }, 500); 

无论我把号码放在哪里都无济于事。

1 个答案:

答案 0 :(得分:0)

语法上的基本错误

$('scroller').animate({ scrollLeft: 0 }, 500); 

应该是

$('#scroller').animate({ scrollLeft: 0 }, 500);