Configure entry animations
masterAnimations in this plugin apply when new data is inserted. To use custom animations, you must include animate.css (v4+ works out of the box; for older versions, set animationPrefix to 'animated').
If you do not want to include animate.css and only want the default fadeIn effect, add this to your CSS:
.animate__animated {
animation-fill-mode: both;
animation-duration: 1s;
}Note: animation-duration in your CSS controls the speed of the 'fly-in' animation.