Install
openclaw skills install lb-motion-skillComplete Motion.dev documentation - modern animation library for React, JavaScript, and Vue (formerly Framer Motion)
openclaw skills install lb-motion-skillMotion is a modern animation library for React, JavaScript, and Vue. It's the evolution of Framer Motion, offering:
npm install motion
import { animate } from "motion"
// Animate elements
animate(".box", { rotate: 360, scale: 1.2 })
// Spring animation
animate(element, { x: 100 }, { type: "spring", stiffness: 300 })
// Stagger multiple elements
animate("li", { opacity: 1 }, { delay: stagger(0.1) })
import { motion } from "motion/react"
<motion.div
animate={{ rotate: 360 }}
transition={{ duration: 2 }}
/>
import { scroll } from "motion"
scroll(animate(".box", { scale: [1, 2, 1] }))
quick-start.md - Installation and first animationUse this skill when: