我有以下代码来滚动表格的滚动条
$('.myTable').animate({
scrollTop: myPositon
}, 45000, function() {
});
现在我有以下事件监听滚动条位置
$('.myTable').bind('scroll', function() {
//if the scroll bar reaches certain position
//pause the scrolling for 5 seconds
});
我有代码来检查滚动条是否到达某个位置,问题是如何在绑定功能中暂停滚动/或动画 5 秒,然后自动恢复动画?
我知道有延迟和clearQueue。但打电话:
$('.myTable').delay(5000) or $('.myTable').clearQueue
似乎有任何影响