Created
August 31, 2016 13:32
-
-
Save andreasvirkus/0682a15bd2d37d54a36070694cdf2bd1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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