Bootstrap 4. Smooth scrolling working on .nav-link but not on other anchor elements

前端 未结 2 1261
日久生厌
日久生厌 2021-02-08 15:10

I\'m using Bootstrap 4, and am using the following jQuery to allow smooth scrolling from the .nav-links to section id\'s (within the same page):

$(\'.nav-link\')         


        
2条回答
  •  孤独总比滥情好
    2021-02-08 15:36

    Set scroll-behavior in css and it will do the effect.

    html {
      scroll-behavior: smooth;
    }
    

    Here's a link to the example: https://jsfiddle.net/mzjan/set7aLnp/

提交回复
热议问题