main

animate-css/animate.css

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

rotateInUpLeft.css

TLDR

The rotateInUpLeft.css file contains CSS code for animating an element to rotate in from the up left direction.

Methods

None

Classes

.rotateInUpLeft

This CSS class is used to apply the animation to an element. When applied, the element will rotate in from the up left direction.

END

@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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