Created
April 14, 2017 10:53
-
-
Save kirandash/4d46684af84562a4da56668ea8511892 to your computer and use it in GitHub Desktop.
Full screen Banner with fixed header
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
| /******************************** | |
| * Banner Home * | |
| ********************************/ | |
| function bannerResize() { | |
| var width = $(window).width(); | |
| var height = $(window).height(); | |
| var headerHeight = $('header#masthead').outerHeight(); | |
| $('#banner-home .banner-item').width(width); | |
| $('#banner-home .banner-item').height(height - headerHeight); | |
| } | |
| bannerResize(); | |
| $(window).resize(bannerResize); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment