.header { position: fixed; right: 0; left: 0; margin: 0; min-height: 50px; padding: 10px; background-color: transparent; color: #ffffff; transition: all 1s ease; } .header.scrolling { background-color: #ffffff; color: #000000; }
// JS Transparent menu fixed on scroll
$(window).scroll(function () {
var scroll = $(window).scrollTop();
if (scroll >= 10) {
$(".header").addClass("scrolling");
} else {
$(".header").removeClass("scrolling");
}
});