main

animate-css/animate.css

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

swing.css

TLDR

This file contains CSS code for a swing animation effect. The animation is defined using keyframes and applied to elements with the class "swing".

Classes

swing

Applies a swing animation effect to the elements. The animation is defined using keyframes.

END

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

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

.swing {
  transform-origin: top center;
  animation-name: swing;
}