我目前正在嘗試在我的投資組合網站上實施向上和向下按鈕(浮動菜單),以向頁面滾動一定量。例如,我會點擊向下按鈕,它會滾動100px,反之亦然。jQuery Scroller問題
我目前使用此代碼來滾動到一個特定的錨點,當點擊一個按鈕,但我只是想修改它,以點擊時向上或向下移動一定數量的像素。
$(document).ready(function(){
$('a[href*=#jump]').click(function() {
if (location.pathname.replace(/^\//,") == this.pathname.replace(/^\//,") && location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
});
HTML中的當前鏈接爲:<a class="jump" href="#jump">Back To Top</a>
其滾動到錨:<a id="jump" href="#"></a>
我相信有人會知道我的意思馬上會問我,如果你需要更多的細節和我可以提供我想要實現的一個例子。幫助將不勝感激。
我意識到你在評論中給出的例子有滾動動畫,所以你可以看到它發生。所以我更新了我的答案,其中包含的代碼顯示瞭如何爲向下滾動或向上滾動 – Anton 2011-02-01 22:18:32
Cheers。大ups安東:D – Ryan 2011-02-02 00:34:48