Created
October 10, 2017 00:14
-
-
Save atorvawork/9f00408abc4551d0e6b541aaea75995a 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
| js: | |
| $(function () { | |
| $('класс ссылки при клике на').on('click', function (e) { | |
| e.preventDefault(); | |
| var selector = $(this).attr('href'); | |
| var h = $(selector); | |
| $('html, body').animate({ | |
| scrollTop: h.offset().top -100 | |
| }, 1100); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment