Currently building my personal portfolio website with Bootstrap 4, I came up with a great idea: changing the navigation bar color based on different sections of the website. I attempted to achieve this using JQuery's offset and scrollTop functions, but encountered some issues. I am seeking guidance on how to properly implement this feature.
Here is the code snippet of the website:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<header id="change">
<nav class="navbar navbar-expand-md bg-dark navbar-dark fixed-top">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#section1">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#section2">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#section3">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<div id="section1" class="container-fluid bg-success" style="padding-top:70px;height: 100vh;width:100%;">
<h1>Section 1</h1>
<p>Try scrolling this section and observe the navigation bar color change!</p>
<p>Try scrolling this section and observe the navigation bar color change!</p>
</div>
<div id="section2" class="container-fluid bg-warning" style="padding-top:70px;height: 100vh;width:100%;">
<h1>Section 2</h1>
<p>Try scrolling this section and observe the navigation bar color change!</p>
<p>Try scrolling this section and observe the navigation bar color change!</p>
</div>
<div id="section3" class="container-fluid bg-secondary" style="padding-top:70px;height: 100vh;width:100%;">
<h1>Section 3</h1>
<p>Try scrolling this section and observe the navigation bar color change!</p>
<p>Try scrolling this section and observe the navigation bar color change!</p>
</div>
<script>
var top1 = $('#section1').offset().top;
var top2 = $('#section2').offset().top;
var top3 = $('#section3').offset().top;
$(document).scroll(function() {
var scrollPos = $(document).scrollTop();
if (scrollPos >= top1 && scrollPos < top2) {
$('#change').css('background-color', '#f00');
} else if (scrollPos >= top2 && scrollPos < top3) {
$('#change').css('background-color', '#0f0');
} else if (scrollPos >= top3) {
$('#change').css('background-color', '#00f');
}
});
</script>
</body>
</html>
Grateful in advance for any assistance provided.