Sliding effect when clicking a Navbar link Bootstrap

后端 未结 1 1713
天命终不由人
天命终不由人 2021-01-27 02:20

Here is the link of my website I am referring to : https://bradrar.github.io/coffee-website/

My webpage has 3 navigation links namely :

  • Who We Are
  • <
相关标签:
1条回答
  • 2021-01-27 03:17

    The simplest way in modern browsers is using scroll-behavior

    html {
        scroll-behavior: smooth;
    }
    

    Demo on Codeply

    Alternatively you can use jQuery animate.

    0 讨论(0)
提交回复
热议问题