Created
July 4, 2018 06:51
-
-
Save alegut/6e5f28f33af1f559546cb6e4a573e97d to your computer and use it in GitHub Desktop.
Scroll to clicked element
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
| var rt = $(this); | |
| setTimeout(function() { | |
| var ttt = $(rt).offset().top - 80 | |
| $('html, body').stop().animate({scrollTop: ttt }, 200); | |
| }, 800); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment