Skip to content

Instantly share code, notes, and snippets.

@Jenya476
Created February 17, 2017 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jenya476/395b7fe728c0d7d6b4f4e28cd3990f59 to your computer and use it in GitHub Desktop.
Save Jenya476/395b7fe728c0d7d6b4f4e28cd3990f59 to your computer and use it in GitHub Desktop.
Плавный сролл до блока
$('a[data-target^="anchor"]').bind('click.smoothscroll', function(){
var target = $(this).attr('href'),
bl_top = $(target).offset().top - 70;
$('body, html').animate({scrollTop: bl_top}, 700);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment