Skip to content

Instantly share code, notes, and snippets.

@kirandash
Created April 14, 2017 10:53
Show Gist options
  • Select an option

  • Save kirandash/4d46684af84562a4da56668ea8511892 to your computer and use it in GitHub Desktop.

Select an option

Save kirandash/4d46684af84562a4da56668ea8511892 to your computer and use it in GitHub Desktop.
Full screen Banner with fixed header
/********************************
* 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