Last active
June 5, 2022 19:01
-
-
Save saboyadev/8a50bfed301d932ccf1e7fd4cb0fa684 to your computer and use it in GitHub Desktop.
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
| // Smooth Scrolling | |
| $('.btn').on('click', function(e) { | |
| if (this.hash !== '') { | |
| e.preventDefault(); | |
| const hash = this.hash; | |
| $('html, body').animate( | |
| { | |
| scrollTop: $(hash).offset().top | |
| }, | |
| 800 | |
| ); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment