jQuery(window).scroll(function() { // check if scroll event happened
if( window.innerWidth > 700 ) {
if (window.scrollY > 50) { // check if user scrolled more than 50 from top of the browser window
jQuery(".navbar").css("background-color", "rgba(255, 255, 255, 0.4)"); // if yes, then change the color of class "navbar" to white (#ffffff) and 0.4 opacity
// jQuery(".navbar").css("background-color", "#ffffff"); // if yes, then change the color of class "navbar" to white (#ffffff)
jQuery(".navbar").css("backdrop-filter", "blur(5px)"); // if yes, then change the blur to 5px
} else {
jQuery(".navbar").css("background-color", "rgba(255, 255, 255, 1);
jQuery(".navbar").css("backdrop-filter", "blur(0px)"); // if yes, then change the blur to 0px
}
}
});