issaafalkattan/React-Landing-Page-Template

On navigation click it does not scroll

Closed this issue · 5 comments

Hi, on your demo when I click the nav buttons it is scrolling to the location, but when I try it locally it just jumps to the location, without scrolling. What am I missing here?

check the code If there some mistake check and slove it

Smooth scrolling works elsewhere:

https://www.free-css.com/assets/files/free-css-templates/preview/page234/interact/
http://www.templatewire.com/preview/interact/

But it doesn't work with this particular repository nor does it work with the Live Demo link:

https://react-landing-page-template.herokuapp.com/

"Check the code if there some mistake check and slove it" is not a very useful comment.

BTW, this is an excellent react template. Thanks for making it available.

Found the solution: https://stackoverflow.com/questions/26535990/smooth-scroll-doesnt-work

html {
  scroll-behavior: smooth;
}

Add this to the top of your public/css/style.css and voilà

Also, remove the following line from public/index.html

<script type="text/javascript" src="js/SmoothScroll.js"></script>

That should do it.

Should be fixed now!