如何停止scrollIntoView?

时间:2013-08-07 22:44:47

标签: jquery jquery-plugins

我正在使用这个jQuery插件jQuery.scrollIntoView

当我点击ID(#back#forward)时,此插件正常运行。

但是,如果我点击相同的ID,我想停止滚动事件。

我应该使用什么? .stop().stopPropgation()

我尝试了这个,但它没有用......

var _doc = document;
var notify = function() {
// ...
}; 
$(function() {
  $(_doc.getElementById('back')).click(function(){
    $(_doc.getElementById('top')).scrollintoview({ duration: 3000, easing: 'easeOutQuint', complete: notify });
  });
  $(_doc.getElementById('forward')).click(function(){
    $('p:last').scrollintoview({ duration: 3000, easing: 'easeOutQuint', complete: notify });
  });
});

我该怎么办?

0 个答案:

没有答案