may88seiji
7/17/2017 - 2:57 PM

smoothScroll

smoothScroll

//<a href="#anchor">アンカーへ移動</a>
$('a[href*="#${1}"]').on('click', function(e) {
  $('html, body').animate({scrollTop: $($(this).attr('href')).offset().top}, 500, 'linear');
  e.preventDefault();
});


$('a[href*="#"]').on('click', function(e) {
  var fixedHeight = 200;
  $('html, body').animate({scrollTop: $($(this).attr('href')).offset().top - fixedHeight}, 500, 'linear');
  e.preventDefault();
});