daniel-g of Nett
3/31/2017 - 8:56 AM

Smooth Scroll con Jquery

Smooth Scroll con Jquery

$(function() {
  $('a[href*="#"]:not([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) {
        $('html, body').animate({
          scrollTop: (target.offset().top - 95) //si es que necesitas offset
        }, 1000);
        return false;
      }
    }
  });
});