Why CSS3 Animation is not working?

You are calling fadein animation in your code but you haven’t defined it anywhere.

CSS3 animations are defined with @keyframes rule. More Information about CSS3 animations is Here.

Add following css:

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

Show code snippet

Leave a Comment