Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VasylKyryliuk/5b6ebdf0dd2784b5f5fdea015e8c117b to your computer and use it in GitHub Desktop.
Save VasylKyryliuk/5b6ebdf0dd2784b5f5fdea015e8c117b to your computer and use it in GitHub Desktop.
плавний скролл по якорям
$('a[href^="#"]').click(function(){
//Сохраняем значение атрибута href в переменной:
var target = $(this).attr('href');
$('html, body').animate({scrollTop: $(target).offset().top}, 800);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment