Skip to main content
1 of 3
user avatar
user avatar
$(window).scroll(function() {    
$('.logo_container, .slogan').css({
"opacity": ".1",
"transition": "opacity .8s ease-in-out"
});
});

check the fiddle http://jsfiddle.net/2k3hfwo0/2/

user2560539