I want to make an animation effect on my website where, when we click on a menu link (say, about-section), it will animate to that div in a parallax style.
So guys if
To get more like a parallax effect, you can add background-attachment: fixed;
.About-section {
height: 300px;
background: url('http://lorempicsum.com/futurama/627/200/3') no-repeat;
background-size: cover;
background-attachment: fixed;
}
Like this
Note : I use @sagar kodte JS code which works good for the animation.