Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save luckydevilru/55a345148a28d30831ec39629a1c36ef to your computer and use it in GitHub Desktop.

Select an option

Save luckydevilru/55a345148a28d30831ec39629a1c36ef to your computer and use it in GitHub Desktop.
плавная прокрутка якорной ссылки slow anchor scroll
<!-- до скрипта долже быть подклчен jquery -->
<script>
$(document).ready(function() {
$('a[href^="#"]').click(function() {
event.preventDefault();
var target = $(this).attr('href'),
top = $(target).offset().top;
// console.log(target);
$('body,html').animate({scrollTop: top}, 1500);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment