main

animate-css/animate.css

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

backInRight.css

TLDR

This file contains a CSS animation called "backInRight" which animates an element sliding in from the right side of the screen and scaling up.

Methods (if applicable)

N/A

Classes (if applicable)

N/A

@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.backInRight {
  animation-name: backInRight;
}