Smooth scroll anchor links WITHOUT jQuery

前端 未结 14 1951
暗喜
暗喜 2020-11-30 20:06

Is it possible to use smooth scroll to anchor links but without jQuery? I am creating a new site and I don\'t want to use jQuery.<

14条回答
  •  孤街浪徒
    2020-11-30 21:05

    Smooth Scroll behavior with polyfill...

    Example:

    document.querySelectorAll('a[href^="#"]').addEventListener("click", function(event) {
      event.preventDefault();
      document.querySelector(this.getAttribute("href")).scrollIntoView({ behavior: "smooth" });
    });
    

    Repository: https://github.com/iamdustan/smoothscroll

提交回复
热议问题