Skip to content

Instantly share code, notes, and snippets.

@kary4
Last active July 9, 2018 21:59
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 kary4/605e894e9096a682dc223e01fe6b4aee to your computer and use it in GitHub Desktop.
Save kary4/605e894e9096a682dc223e01fe6b4aee to your computer and use it in GitHub Desktop.
Fixed Header Effect Animation
<script>
jQuery( document ).ready(function() {
jQuery(window).scroll(function(){
if (jQuery(this).scrollTop() > 5) {
jQuery('#main-header').addClass('et-fixed-header');
} else {
jQuery('#main-header').removeClass('et-fixed-header');
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment