Skip to content

Instantly share code, notes, and snippets.

@alxpsr
Created April 18, 2016 09:26
Show Gist options
  • Save alxpsr/ad1813a5bcd05cc4c969d8b8b5890d45 to your computer and use it in GitHub Desktop.
Save alxpsr/ad1813a5bcd05cc4c969d8b8b5890d45 to your computer and use it in GitHub Desktop.
<script>
var toTopBtn = document.getElementsByClassName('to-top-btn')[0];
window.onscroll = function() {
var scrollTop = window.pageYOffset;
if ( scrollTop >= 120 ) {
toTopBtn.classList.add('to-top-btn--active');
}
else {
toTopBtn.classList.remove('to-top-btn--active');
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment