Skip to content

Instantly share code, notes, and snippets.

@iamravenous
Last active March 18, 2016 13:31
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 iamravenous/9d1c72f8c2e4aa2af6e1 to your computer and use it in GitHub Desktop.
Save iamravenous/9d1c72f8c2e4aa2af6e1 to your computer and use it in GitHub Desktop.
Easy and reusable script for smoothing scroll to top
/*
* Smooth scroll to top
* Easy and reusable script for smoothing scroll to top
* Author: Franco Moya - @iamravenous
* Usage: Add data-scroll="top" to the link or element you want to scroll to top
*/
$('[data-scroll="top"]').click(function(e){
e.preventDefault();
$('body,html').animate({
scrollTop: 0
}, 1500, 'swing');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment