okuden-labo
3/19/2015 - 3:31 AM

jQueryでスムーズリンク(1)

jQueryでスムーズリンク(1)

/* ページ内リンクをスムーズに移動させます。 */
$(document).ready(function() {
$('a[href*=#]').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}, 900);
    return false;
   }
  }
  });
});


// スクロール先を指定 
<a id="top" name="top"></a> 
// リンクを設置します。 
<a href="#top">go to top</a>