rexjiang92
1/3/2018 - 7:13 PM

slow scroll shift

// This will smooth scroll when clicking on Contact button in menu
  $('a[href*=#]').click(function(event){
      $('html, body').animate({
          scrollTop: $( $.attr(this, 'href') ).offset().top
      }, 1000);
      event.preventDefault();
  });