JavaScript
15
Вклад в тег
$(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} );
}
}
});