I've been attempting to implement scroll animation on a div, but for some reason, it's not working as intended. I must have made a mistake somewhere, but I can't figure out where. Any help in resolving this issue would be greatly appreciated. I was trying to follow this example
HTML Code:
<HTML>
<HEAD>
<meta charset="utf-8">
... (the rest of the HTML code) ...
custom_Bootstrap.css file:
.sidebar1 {
background: #F17153;
/* Gradient styles */
... (more CSS styles) ...
}
.hidden{
opacity:0;
}
.visible{
opacity:1;
}
#wrapper {
transition: all 0.4s ease 0s;
}
... (additional CSS styles) ...
@media (max-width: 1200px) {
... (responsive design rules) ...
}
customFunctions.js file:
// Implementing smooth scrolling for anchor links
$('a[href*="#"]')
.not('[href="#"]')
.not('[href="#0"]')
.click(function(event) {
// Smooth scrolling behavior
... (scrolling function implementation) ...
});