main

animate-css/animate.css

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

flash.css

TLDR

The provided file, flash.css, contains CSS code defining an animation called "flash" and a class called "flash" that applies the animation to an element.

Methods

N/A

Classes

Class flash

This class applies the "flash" animation to an element. The animation provides a flashing effect by changing the opacity of the element at different keyframe positions.

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}