Created
March 21, 2016 11:17
-
-
Save celticwebdesign/f2bf3287b559f96df0cf to your computer and use it in GitHub Desktop.
Add box shadow to header on scroll
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
$( window ).scroll(function() { | |
// if ($('body').not('.home').length > 0 ) { | |
if( $(window).scrollTop() > 0 ) { | |
$('#header').css('box-shadow', '0 1px 3px rgba(0, 0, 0, 0.5)'); | |
} else { | |
$('#header').css('box-shadow', 'none'); | |
} | |
// } | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment