// ページ内リンク スムーススクロース
$('a[href*="#"]').click(function () {
var elmHash = $(this).attr('href');
var pos = $(elmHash).offset().top;
$('body,html').animate({scrollTop: pos}, 400);
return false;
});

スムーススクロール
- JavaScript
- 動くデザイン
// ページ内リンク スムーススクロース
$('a[href*="#"]').click(function () {
var elmHash = $(this).attr('href');
var pos = $(elmHash).offset().top;
$('body,html').animate({scrollTop: pos}, 400);
return false;
});