Skip to content

Instantly share code, notes, and snippets.

@AndryWJ
Created February 5, 2018 14:14
Show Gist options
  • Save AndryWJ/53b92b7477a48eee545d3c05ccd5d2d2 to your computer and use it in GitHub Desktop.
Save AndryWJ/53b92b7477a48eee545d3c05ccd5d2d2 to your computer and use it in GitHub Desktop.
Скролл к якорю
$(document).ready(function(){
$("#menu").on("click","a", function (event) {
//отменяем стандартную обработку нажатия по ссылке
event.preventDefault();
//забираем идентификатор бока с атрибута href
var id = $(this).attr('href'),
//узнаем высоту от начала страницы до блока на который ссылается якорь
top = $(id).offset().top;
//анимируем переход на расстояние - top за 1500 мс
$('body,html').animate({scrollTop: top}, 1500);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment