megazear7 / orison

A server and static site generator built on top of lit-html
http://orison.alexlockhart.me
18 stars 2 forks source link

Navigation Scroll #18

Closed megazear7 closed 5 years ago

megazear7 commented 5 years ago

When performing a navigation the auto scroll to nav should only happen if the top of the users viewport is lower than the bottom of the navigation. This way if the user can already view the navigation or is above the navigation they don't get awkwardly scrolled down. If the navigation moves or becomes absolutely bottom aligned we will need to instead use some element at the top of the <main> element instead of the <nav> element.

megazear7 commented 5 years ago

This was implemented in commit 9f8c921. I calculated from the top of the nav instead of the bottom because it was a better experience.