main

animate-css/animate.css

Last updated at: 29/12/2023 09:20

fadeInTopRight.css

TLDR

This file defines a CSS animation called fadeInTopRight that fades in an element from the top right corner.

END

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInTopRight {
  animation-name: fadeInTopRight;
}