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

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)