main

animate-css/animate.css

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

fadeOutBottomRight.css

TLDR

This file defines a CSS animation called fadeOutBottomRight that fades out an element while moving it to the bottom right corner of the screen.

Classes

.fadeOutBottomRight

This class applies the fadeOutBottomRight animation to an element, causing it to fade out while moving to the bottom right corner of the screen.

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

.fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}