// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification // for details on configuring this project to bundle and minify static web assets. // Write your JavaScript code. function openNav() { document.getElementById("mySidenav").style.width = "100%"; document.getElementById("xButton").style.visibility = "visible"; } function closeNav() { document.getElementById("mySidenav").style.width = "0"; document.getElementById("xButton").style.visibility = "hidden"; } window.onscroll = function () { scrollFunction() }; function scrollFunction() { if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) { document.getElementById("navbar-desktop").style.backgroundColor = "rgba(255, 255, 255, 0.9)"; document.getElementById("navbar-mobile").style.backgroundColor = "rgba(255, 255, 255, 0.9)"; } else { document.getElementById("navbar-desktop").style.backgroundColor = "rgb(255, 255, 255)"; document.getElementById("navbar-mobile").style.backgroundColor = "rgb(255, 255, 255)"; } }