I am attempting to add a subtle animation to the background-color in my navbar, as it currently appears suddenly. I want the transition to be smooth and gradual.
Check out the JSFiddle demo here: https://jsfiddle.net/3f0czkpt/
The jQuery code below will add a CSS class to the navbar when scrolling:
.affix {
padding-top: 0.2em !important;
padding-bottom: 0.2em !important;
background-color: #000;
transition: padding background-color 0.2s linear;
}
You can include the necessary libraries for Bootstrap and jQuery using the links provided. The HTML markup for the navbar and sections with content are also included in this snippet.