Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

motion-reactmotion React 前端

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,944

周安装

81

GitHub Stars

324

下载量

648
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:motion-react(motion React 前端)
来源仓库:https://github.com/pedronauck/skills
仓库路径:skills/motion-react
安装命令:
npx skills add https://github.com/pedronauck/skills --skill motion-react
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pedronauck/skills --skill motion-react

简介

用于辅助前端页面、组件和样式开发,适合生成或审查 React、Vue 等相关代码。

  • 适用于整理组件结构、定位布局问题或优化交互逻辑的场景。
  • 需要结合项目现有设计系统和路由方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • motion-react 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Motion for React

Package: motion (formerly framer-motion). Import from "motion/react".

Installation

pnpm add motion

Imports

// Standard React (Vite, CRA, Pages Router)
import { motion, AnimatePresence } from "motion/react"

// Next.js App Router — use "motion/react-client" for RSC tree-shaking
"use client"
import * as motion from "motion/react-client"

// Minimal bundle (2.3 KB) — imperative API only
import { useAnimate } from "motion/react-mini"

// Reduced bundle (4.6 KB) — LazyMotion + m component
import { LazyMotion, domAnimation, m } from "motion/react"

Motion Component

Every HTML/SVG element has a motion counterpart:

<motion.div />
<motion.button />
<motion.svg />
<motion.circle />

Custom components: wrap with motion.create():

const MotionBox = motion.create(Box)
// forwardRef required — the ref must reach a DOM node

Core Animation Props

<motion.div
  initial={{ opacity: 0, y: 20 }}     // mount state (or false to skip)
  animate={{ opacity: 1, y: 0 }}      // target state
  exit={{ opacity: 0, y: -20 }}       // unmount state (needs AnimatePresence)
  transition={{ type: "spring", bounce: 0.25 }}
  whileHover={{ scale: 1.05 }}
  whileTap={{ scale: 0.95 }}
  whileFocus={{ borderColor: "#00f" }}
  whileDrag={{ scale: 1.1 }}
  whileInView={{ opacity: 1 }}
  viewport={{ once: true, margin: "-100px" }}
/>

Animatable Values

Motion animates any CSS value: opacity, filter, background-image, mask-image.

Independent transforms (not possible in CSS alone):

  • Translate: x, y, z
  • Scale: scale, scaleX, scaleY
  • Rotate: rotate, rotateX, rotateY, rotateZ
  • Skew: skewX, skewY
  • Origin: originX, originY, originZ

Value types: numbers, strings with units ("100px"), colors (hex/rgba/hsla), "auto" for width/height.

Hardware acceleration: set transform directly for GPU compositing:

<motion.li
  initial={{ transform: "translateX(-100px)" }}
  animate={{ transform: "translateX(0px)" }}
  transition={{ type: "spring" }}
/>

Keyframes

Pass arrays to animate through a sequence:

<motion.div animate={{ x: [0, 100, 0] }} />

// null = "use current value"
<motion.div animate={{ x: [null, 100, 0] }} />

Variants

Named animation states for orchestrated animations:

const list = {
  visible: {
    transition: { staggerChildren: 0.1 }
  },
  hidden: {}
}

const item = {
  visible: { opacity: 1, y: 0 },
  hidden: { opacity: 0, y: 20 }
}

<motion.ul initial="hidden" animate="visible" variants={list}>
  <motion.li variants={item} />
  <motion.li variants={item} />
</motion.ul>

Variants propagate through the tree. Children inherit animate/initial/exit from parent.

AnimatePresence — Exit Animations

import { AnimatePresence } from "motion/react"

<AnimatePresence>
  {isVisible && (
    <motion.div
      key="modal"           // REQUIRED: unique key
      initial={{ opacity: 0 }}
      animate={{ opacity: 1 }}
      exit={{ opacity: 0 }}
    />
  )}
</AnimatePresence>

Critical rules:

  1. AnimatePresence must stay mounted — never wrap it in a conditional
  2. Direct children must have unique key props
  3. exit prop only works on motion components inside AnimatePresence
// WRONG — AnimatePresence unmounts with condition
{show && <AnimatePresence><motion.div /></AnimatePresence>}

// CORRECT — condition inside AnimatePresence
<AnimatePresence>{show && <motion.div key="k" />}</AnimatePresence>

Modes: "sync" (default), "wait" (sequential enter/exit), "popLayout" (pop exiting element out of flow).

Slideshow pattern — change key to trigger exit+enter:

<AnimatePresence mode="wait">
  <motion.img
    key={image.src}
    initial={{ x: 300, opacity: 0 }}
    animate={{ x: 0, opacity: 1 }}
    exit={{ x: -300, opacity: 0 }}
  />
</AnimatePresence>

Dynamic exit data — pass via custom prop + usePresenceData:

<AnimatePresence custom={direction}>
  <Slide key={id} />
</AnimatePresence>

// Inside Slide:
const direction = usePresenceData()

Transitions

For full transition API details, see references/transitions-api.md.

Quick reference:

// Spring (default for physical props: x, y, scale)
transition={{ type: "spring", bounce: 0.25 }}
transition={{ type: "spring", stiffness: 300, damping: 20 }}
transition={{ type: "spring", visualDuration: 0.5, bounce: 0.25 }}

// Tween (default for opacity, color)
transition={{ duration: 0.3, ease: "easeInOut" }}

// Per-value transitions
transition={{
  default: { type: "spring" },
  opacity: { duration: 0.2, ease: "linear" }
}}

// Orchestration
transition={{ delay: 0.5, repeat: Infinity, repeatType: "reverse" }}

// Global default
<MotionConfig transition={{ duration: 0.3 }}>

Layout Animations

For full layout animation details, see references/layout-animations.md.

// Auto-animate any layout change
<motion.div layout />

// Shared element transitions
<motion.div layoutId="underline" />

// Customize layout transition
<motion.div layout transition={{ layout: { duration: 0.3 } }} />

Gestures & Drag

For full gesture/drag API, see references/gestures-and-drag.md.

<motion.div
  whileHover={{ scale: 1.1 }}
  whileTap={{ scale: 0.9 }}
  drag                           // enable both axes
  drag="x"                       // constrain to x-axis
  dragConstraints={{ left: -100, right: 100 }}
  dragElastic={0.2}
/>

Scroll Animations

For full scroll API, see references/scroll-animations.md.

// Viewport-triggered
<motion.div
  initial={{ opacity: 0, y: 50 }}
  whileInView={{ opacity: 1, y: 0 }}
  viewport={{ once: true }}
/>

// Scroll-linked progress bar
const { scrollYProgress } = useScroll()
<motion.div style={{ scaleX: scrollYProgress }} />

// Element scroll progress
const ref = useRef(null)
const { scrollYProgress } = useScroll({
  target: ref,
  offset: ["start end", "end start"]
})

Hooks & Motion Values

For full hooks API, see references/hooks-and-motion-values.md.

// Manual motion values (no re-renders)
const x = useMotionValue(0)
const opacity = useTransform(x, [-200, 0, 200], [0, 1, 0])
<motion.div drag="x" style={{ x, opacity }} />

// Smooth spring following
const springX = useSpring(x, { stiffness: 100, damping: 30 })

// Imperative animation control
const [scope, animate] = useAnimate()
animate("li", { opacity: 1 }, { stagger: 0.1 })

// Event listener (no re-render)
useMotionValueEvent(scrollY, "change", (v) => console.log(v))

Bundle Optimization

ApproachSizeWhat you get
motion/react~34 KBFull API
LazyMotion + m~4.6 KBDeclarative animations, no gestures
motion/react-mini~2.3 KBuseAnimate only
// LazyMotion pattern
import { LazyMotion, domAnimation, m } from "motion/react"

<LazyMotion features={domAnimation}>
  <m.div animate={{ opacity: 1 }} />
</LazyMotion>

Accessibility

<MotionConfig reducedMotion="user">
  <App />
</MotionConfig>

Options: "user" (respect OS setting), "always" (force instant), "never" (ignore).

Hook: useReducedMotion() returns true when user prefers reduced motion.

Tailwind Integration

Let each library handle its strength. **Remove Tailwind transition-* classes** — they conflict.

// WRONG — Tailwind transition conflicts with Motion
<motion.div className="transition-all duration-300" animate={{ x: 100 }} />

// CORRECT — Tailwind for styling, Motion for animation
<motion.div className="rounded-lg bg-blue-600 p-4" whileHover={{ scale: 1.05 }} />

Next.js App Router

Motion components require client-side rendering. Use "motion/react-client" for optimal tree-shaking:

// components/motion-client.tsx
"use client"
import * as motion from "motion/react-client"
export { motion }

// app/page.tsx (Server Component)
import { motion } from "@/components/motion-client"
<motion.div animate={{ opacity: 1 }} />

Common Pitfalls

  1. Exit animations not firing — AnimatePresence must stay mounted; children need unique key
  2. Tailwind transition conflict — Remove transition-* classes from motion elements
  3. height: "auto" + display: "none" — Use visibility: "hidden" instead
  4. Layout animations in scrollable containers — Add layoutScroll prop to scroll parent
  5. Layout animations in fixed elements — Add layoutRoot prop to fixed parent
  6. Percentage transforms + layout — Convert to pixels; percentage values break FLIP calculation
  7. popLayout mode — Custom components must use forwardRef to forward ref to DOM node
  8. AnimatePresence propagate — Set to true on nested AnimatePresence to fire child exits

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.31%
按下载量换算203

Claude

30.48%
按下载量换算198

Cursor

19.73%
按下载量换算128

Gemini CLI

8.56%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills