Created
August 4, 2019 17:34
-
-
Save maxdenaro/a131e4a6aadf39d60a4a54d89b25db87 to your computer and use it in GitHub Desktop.
Scroll to anchors
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
| <ul> | |
| <li><a href="#one"></a></li> | |
| <li><a href="#two"></a></li> | |
| <li><a href="#three"></a></li> | |
| </ul> | |
| <section id="one"></section> | |
| <section id="two"></section> | |
| <section id="three"></section> |
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
| $('.anchor').click((e) => { | |
| e.preventDefault(); | |
| let href = $(e.currentTarget).attr('href'); | |
| let top = $(href).offset().top; | |
| $('body,html').animate({ | |
| scrollTop: top, | |
| }, 700); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment