Advertisement
srikat

Untitled

Jul 26th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if( $( document ).scrollTop() > 0 ){
  2. $( '.site-header' ).addClass( 'dark' );
  3. }
  4.  
  5. // Add opacity class to site header
  6. $( document ).on('scroll', function(){
  7.  
  8. if ( $( document ).scrollTop() > 0 ){
  9. $( '.site-header' ).addClass( 'dark' );
  10.  
  11. } else {
  12. $( '.site-header' ).removeClass( 'dark' );
  13. }
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement