main

animate-css/animate.css

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

rotateOutDownLeft.css

TLDR

This file contains a CSS animation called rotateOutDownLeft that rotates an element to the left and makes it disappear.

Classes

rotateOutDownLeft

This class applies the rotateOutDownLeft animation to an element. It rotates the element to the left and gradually reduces its opacity until it disappears.

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}