0
快速問題。我已經實現了滾動到方法滾動到我的div與導航中的特定ID。由於我的導航欄固定滾動到很遠..我如何抵消,以便它滾動到正確的位置..上載一些圖像和js代碼..滾動到固定導航隱藏內容
希望你能幫助...
這是香港專業教育學院得到了...
,這就是我想要的東西....
js文件..
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function() {
window.location.hash = target;
});
});
Brillant,正是我正在尋找....謝謝 – AC88