EduardET

Untitled

Apr 3rd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         var header = $( "#main-header" );
  5.         $( window ).scroll( function() {
  6.             if ( $( window ).scrollTop() == 0 ) {
  7.                 header.addClass( 'wpc-header-hide' ).removeClass( 'wpc-header-show' );
  8.             } else {
  9.                 header.removeClass( 'wpc-header-hide' ).addClass( 'wpc-header-show' )
  10.             }
  11.         } )
  12.     } );
  13. } )( jQuery );
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment