I want the posts to be affected when the site page loads, for example fade-in, but the posts that are seen when loading, the rest of the posts are fixed and without effects, someone can help me in this case.
I used css for this effect.
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}