Answers for "smooth scroll anchor link css"

12

smooth scroll css

html {
  scroll-behavior: smooth;
}

/* No support in IE, or Safari
You can use this JS polyfill for those */
http://iamdustan.com/smoothscroll/
Posted by: Guest on March-18-2020
0

smooth scrolling when clicking an anchor link

// smooth scrolling when clicking an anchor link 
$('.nav-item a').on('click', function () {
    if (location.pathname.replace(/^\//, '') === this.pathname.replace(/^\//, '') && location.hostname === this.hostname) {
        let target = $(this.hash);
        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
        if (target.length) {
            html_body.animate({
                scrollTop: target.offset().top - 0
            }, 1500);
            return false;
        }

    }
});
Posted by: Guest on July-15-2021
0

smooth scroll on clicking link

html{scroll-behavior:smooth}
Posted by: Guest on May-25-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language