Why doesn't the transition effect work on my bootstrap website even though I've added transition: 0.5s? Strangely, it works perfectly fine when testing on a custom div on the jsfiddle site. Check it out here
window.addEventListener('scroll', function() {
var header = document.getElementById("navbar");
header.classList.toggle("fixednav", window.scrollY > 100);
});
.fixednav {
transition: 0.5s;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 9999;
}