$(this).scroll(function() {
if ($(this).width() < 992 ) {
var offsetHeight = $(this).scrollTop();
if ( offsetHeight > 50 ) {
TweenMax.to( $('header'), 0.3, {css:{backgroundColor: '#fff'}, ease: Back.easeIn} );
}
else {
TweenMax.to( $('header'), 0.3, {css:{backgroundColor: 'transparent'}, ease: Back.easeIn} );
}
}
});
$('#menu-toggle').click(function() {
var remove = '<i class="fa fa-fw fa-times" aria-hidden="true"></i>';
var contentMenu = $(this).html();
if ( remove == contentMenu ) {
$(this).html('<i class="fa fa-fw fa-bars" aria-hidden="true"></i>');
}
else {
$(this).html(remove);
}
});