Skip to content

Instantly share code, notes, and snippets.

@rodolphonetto
Created December 4, 2018 10:25
Show Gist options
  • Save rodolphonetto/34157a13b5cfeb905b26fa23a82a41bf to your computer and use it in GitHub Desktop.
Save rodolphonetto/34157a13b5cfeb905b26fa23a82a41bf to your computer and use it in GitHub Desktop.
scroll
$(".interno").click (function (e) {
e.preventDefault();
var id = $(this).attr("href"),
targetOffset = $(id).offset().top;
$("html, body").animate({
scrollTop: targetOffset -70
},500)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment