animation

Installation
SKILL.md

Animation Implementation with Motion

Use the Motion library (https://motion.dev) for all animation work.

Quick Start

React (Primary):

import { motion } from "motion/react"

// Basic animation
<motion.div animate={{ opacity: 1, y: 0 }} />

// With transition config
<motion.div
  animate={{ x: 100 }}
  transition={{ type: "spring", stiffness: 100 }}
/>
Related skills

More from neversight/learn-skills.dev

Installs
1
GitHub Stars
129
First Seen
Mar 21, 2026