Created
December 11, 2019 17:39
-
-
Save bfintal/df55dc8868ff89518c844badc051552d 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
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