Created
February 12, 2017 18:21
-
-
Save korney197823/8f886de8a9134dd4701ceb214ce7903a to your computer and use it in GitHub Desktop.
anchor scroll 2
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
| $(function(){ | |
| $('a[href^="#"]').on('click', function(event) { | |
| // отменяем стандартное действие | |
| event.preventDefault(); | |
| let sc = $(this).attr("href"), | |
| dn = $(sc).offset().top; | |
| /* | |
| * sc - в переменную заносим информацию о том, к какому блоку надо перейти | |
| * dn - определяем положение блока на странице | |
| */ | |
| $('html, body').animate({scrollTop: dn}, 1000); | |
| /* | |
| * 1000 скорость перехода в миллисекундах | |
| */ | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment