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);
}
}