css-animations

Installation
SKILL.md

CSS Animations

Native browser animations - GPU-accelerated, no dependencies, excellent performance.

Quick Start

/* Define keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
Related skills
Installs
1
GitHub Stars
4
First Seen
Mar 29, 2026