Skip to content

Instantly share code, notes, and snippets.

@bfintal
Created December 11, 2019 17:39
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 bfintal/df55dc8868ff89518c844badc051552d to your computer and use it in GitHub Desktop.
Save bfintal/df55dc8868ff89518c844badc051552d to your computer and use it in GitHub Desktop.
add_action( 'wp_head', function () { ?>
<script>
window.addEventListener( 'scroll', function() {
const limit = document.body.classList.contains( 'home' ) ? 300 : 50
if ( ( window.pageYOffset || document.body.scrollTop ) > limit ) {
if ( ! document.body.classList.contains( 'is-scrolling' ) ) {
document.body.classList.add( 'is-scrolling' )
}
} else {
if ( document.body.classList.contains( 'is-scrolling' ) ) {
document.body.classList.remove( 'is-scrolling' )
}
}
} )
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment