Skip to content

Instantly share code, notes, and snippets.

@cranca
Last active January 11, 2017 18:10
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 cranca/6143a473d9fcb25e3a8f4dd8b99daf4b to your computer and use it in GitHub Desktop.
Save cranca/6143a473d9fcb25e3a8f4dd8b99daf4b to your computer and use it in GitHub Desktop.
Botones para scrollTo a un elemento determinado
// http://www.devkit.co/code/26-jquery-animated-scroll-to/
$(".button").click(function(e){
e.preventDefault();
scrollTo(".header");
});
function scrollTo(el){
$("html, body").animate( { scrollTop: $(el).offset().top }, 500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment