更新:
这是一个演示该问题的jsbin 示例。
基本上,我有以下 javascript 将窗口滚动到页面上的锚点:
// get anchors with href's that start with "#"
$("a[href^=#]").live("click", function(){
var target = $($(this).attr("href"));
// if the target exists: scroll to it...
if(target[0]){
// If the page isn't long enough to scroll to the target's position
// we want to scroll as much as we can. This part prevents a sudden
// stop when window.scrollTop reaches its maximum.
var y = Math.min(target.offset().top, $(document).height() - $(window).height());
// also, don't try to scroll to a negative value...
y=Math.max(y,0);
// OK, you can scroll now...
$("html,body").stop().animate({ "scrollTop": y }, 1000);
}
return false;
});
它工作得很好......直到我手动尝试滚动窗口。当滚动条或鼠标滚轮滚动时,我需要停止当前的滚动动画……但我不确定如何执行此操作。
这可能是我的出发点......
$(window).scroll(e){
if(IsManuallyScrolled(e)){
$("html,body").stop();
}
}
...但我不确定如何编写该IsManuallyScrolled
函数。我已经在 Google Chrome 的控制台和 AFAIK 中检查了e
(event
对象),没有办法区分手动滚动和 jQuery 的animate()
滚动。
如何区分手动滚动和通过 jQuery$.fn.animate
函数调用的滚动?