Created
July 13, 2019 07:24
-
-
Save luckydevilru/55a345148a28d30831ec39629a1c36ef to your computer and use it in GitHub Desktop.
плавная прокрутка якорной ссылки slow anchor scroll
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
| <!-- до скрипта долже быть подклчен jquery --> | |
| <script> | |
| $(document).ready(function() { | |
| $('a[href^="#"]').click(function() { | |
| event.preventDefault(); | |
| var target = $(this).attr('href'), | |
| top = $(target).offset().top; | |
| // console.log(target); | |
| $('body,html').animate({scrollTop: top}, 1500); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment