Skip to content

Instantly share code, notes, and snippets.

@atorvawork
Created October 10, 2017 00:14
Show Gist options
  • Save atorvawork/9f00408abc4551d0e6b541aaea75995a to your computer and use it in GitHub Desktop.
Save atorvawork/9f00408abc4551d0e6b541aaea75995a to your computer and use it in GitHub Desktop.
Плавные якоря
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