I am trying to add a simple fadeIn animation in the Custom CSS area of an element using the following code:
%root% {
animation: fadeIn 5s;
}
It appears to function correctly in the builder but when I try and view it on the frontend it never animates. I am sure this is something simple I am missing but could someone point me in the right direction please?
Perfect, that fixed it. Thank you! Is it the lack of keyframes/opacity that caused this? Or the lack of iterations and telling it to ease in? If so do you have a resource you could point me to so that I may read up on it?
Glad it helped. You have used the animation called “fadeIn” but it didn’t exist so that is where you create your animation using keyframes and give it a name.