main

animate-css/animate.css

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

fadeOut.css

TLDR

This file provides a CSS animation for fading out elements.

Classes

fadeOut

This class can be applied to an element to apply the fade out animation to it.

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}