I make the site on one page with the classic navigation at the top. Right now I have links configured as hash tags to navigate the page:
<nav> <a href="#about">About</a> </nav> ... <section id="about">...</section>
Obviously this works, but the transition to the about section is instantaneous rather than gradual. I am looking for an extremely simple implementation to make a gradual transition. I don't want anything fancy. There is no axis, displacement or any other parameters. I just want the scroll transition to be gradual. The only setting I want is the time it takes to complete the scroll. In addition, I want to practically not change my markup. I saw several javascript plugins that require you to use anchor tags to set locations in an html document - I don't want that. This site looks promising, but I don’t know how to set it up. There is no demo, so I can’t figure out how to configure it. I am not so literate in Javascript. In addition, the ScrollTo plugin for jQuery is too complicated. I am ready to use a plugin with many options, but I just do not want the options to stop me from understanding how to configure it.
Any help would be greatly appreciated!
source share