Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created August 31, 2016 13:32
Show Gist options
  • Save andreasvirkus/0682a15bd2d37d54a36070694cdf2bd1 to your computer and use it in GitHub Desktop.
Save andreasvirkus/0682a15bd2d37d54a36070694cdf2bd1 to your computer and use it in GitHub Desktop.
/**
* A very basic (linear) scroll to top function
*/
function scrollToTop () {
if(window.scrollY!=0) {
setTimeout(function() {
window.scrollTo(0,window.scrollY-30);
TopscrollTo();
}, 20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment