Created
July 28, 2025 14:58
-
-
Save anova/be2ebb5a38b0f4a689bc160fd3cf250a to your computer and use it in GitHub Desktop.
Scrolls to section with smooth animation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.scrollToSection = function(where) { | |
| const headerHeight = document.getElementById('header-navigation').offsetHeight, | |
| offsetTop = document.getElementById(where).offsetTop, | |
| scrollDistance = offsetTop - headerHeight; | |
| window.scrollTo({top: scrollDistance, behavior: 'smooth' }); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment