Skip to content

Instantly share code, notes, and snippets.

@aislam23
Created July 5, 2016 13:38
Show Gist options
  • Save aislam23/7a8f694f4db794a1b53930a780d914b9 to your computer and use it in GitHub Desktop.
Save aislam23/7a8f694f4db794a1b53930a780d914b9 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