Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Last active August 2, 2017 06:50
Show Gist options
  • Save dmjcomdem/0025c1284095b2421ae931bb3af4cbed to your computer and use it in GitHub Desktop.
Save dmjcomdem/0025c1284095b2421ae931bb3af4cbed 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