Blog スタッフブログ

WEB制作

【WORDPRESS】ページ内リンクの際、スムーズに移動する方法

こんにちわ、WEB開発の米田です。

WEBページやWORDPRESSでのページ内リンクの際に通常のaリンクですると通常のリンクと同様飛ぶような動作になります。そこの改善のためのコードになります。

jsファイルにこちらを記入すればスムーズなページ内リンクが動作します。

$(document).ready(function() {
  $(".scroll").click(function(){
    $('html,body').animate({ scrollTop: ($($(this).attr("href")).offset().top) });
    return false;
  });
});

押したらページ内リンクが動作する箇所に.scrollを追加すればスムーズなページ内リンクになります。


Warning: Undefined array key 0 in /home/fl0uhem6u4/mixltd.jp/public_html/cms/wp-content/themes/mix_theme/pagination-single.php on line 3

Warning: Attempt to read property "cat_ID" on null in /home/fl0uhem6u4/mixltd.jp/public_html/cms/wp-content/themes/mix_theme/pagination-single.php on line 3