How to scroll to div after click on About or Contact in my menu?

前端 未结 3 792
说谎
说谎 2021-02-06 13:43

How to scroll to div (e.g: #about, #contact) after click on About or Contact in my menu?

3条回答
  •  后悔当初
    2021-02-06 14:31

    It is easier than you think.

      

    Name site

    Here's my about
    ...
    Here's my contact

    By using the hash, it'll auto scroll to an element with that id (or an anchor with that name attribute). If you want it to scroll smoothly you can enhance the scroll effect with a javascript library, like jquery. See this question: How to scroll HTML page to given anchor using jQuery or Javascript?

提交回复
热议问题