jQueryでページ内リンク スクロール
スクロールしながらページ内アンカーへ移動を一括設定
ページ内アンカーを一括制御。
jQuery
$(function () {
// #で始まるリンクを対象
$('a[href^=#]').click(function(){
// 除外対象を指定する場合
// $('a[href^=#]:not(a[href=#foo], a[href=#bar])').click(function(){
$('html,body').animate({
scrollTop: $($(this).attr('href')).offset().top },
'slow','swing');
return false;
})
});
サンプル