<script>
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10) {
document.getElementsById("bg-custom").style.backgroundColor = "#ede9e000";
} else {
document.getElementById("bg-custom").style.backgroundColor = "#ede9e0";
}
}
</script>
<nav class="navbar navbar-expand-lg bg-custom sticky-top" id="bg-custom">
Hello guys I have this little part of my code where I want to ease the backgroundcolor on scroll. The color already changes on scroll, but how can I fix that is eases nice? If anyone can help me I would appreciate it a lot!