Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

motion-animation-patterns运动动画模式

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

419

周安装

18

GitHub Stars

公开资料未说明

下载量

147
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add yonatangross/skillforge-claude-plugin --skill "motion-animation-patterns"

简介

用于辅助视频生成、动画合成与 Remotion 项目开发。

  • 适合让 Agent 组织镜头、生成素材说明或维护合成代码。
  • 使用时需确认分辨率、时长、素材路径和导出格式等约束条件。
  • 涉及外部素材或人物肖像时,应先核对版权授权与内容审核要求。
  • motion-animation-patterns 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Motion Animation Patterns

Overview

This skill provides comprehensive guidance for implementing Motion (Framer Motion) animations in React 19 applications. It ensures consistent, performant, and accessible animations across the UI using centralized animation presets.

When to use this skill:

  • Adding page transition animations
  • Implementing modal/dialog entrance/exit animations
  • Creating staggered list animations
  • Adding hover and tap micro-interactions
  • Implementing skeleton loading states
  • Creating collapse/expand animations
  • Building toast/notification animations

Bundled Resources:

  • references/animation-presets.md - Complete preset API reference
  • examples/component-patterns.md - Common animation patterns

Core Architecture

Animation Presets Library (frontend/src/lib/animations.ts)

All animations MUST use the centralized animations.ts presets. This ensures:

  • Consistent motion language across the app
  • RTL-aware animations (Hebrew support)
  • Performance optimization
  • Easy maintainability
// ✅ CORRECT: Import from animations.ts
import { motion, AnimatePresence } from 'motion/react';
import { fadeIn, slideUp, staggerContainer, modalContent } from '@/lib/animations';

// ❌ WRONG: Inline animation values
<motion.div initial={{ opacity: 0 }} animate={{ opacity: 1 }}>

Available Presets

Transition Timing

PresetDurationEaseUse For
transitions.fast0.15seaseOutMicro-interactions
transitions.normal0.2seaseOutMost animations
transitions.slow0.3seaseInOutEmphasis effects
transitions.springspring300/25Playful elements
transitions.gentleSpringspring200/20Modals/overlays

Basic Animations

PresetEffectUse For
fadeInOpacity fadeSimple reveal
fadeScaleFade + slight scaleSubtle emphasis
scaleInFade + scale from centerBadges, buttons

Slide Animations (RTL-Aware)

PresetDirectionUse For
slideInRightRight to centerRTL Hebrew UI (natural)
slideInLeftLeft to centerLTR content
slideUpBottom to centerCards, panels
slideDownTop to centerDropdowns

List/Stagger Animations

PresetEffectUse For
staggerContainerParent with staggerList wrappers
staggerContainerFastFast staggerQuick lists
staggerItemFade + slide childList items
staggerItemRightRTL slide childHebrew lists

Modal/Dialog Animations

PresetEffectUse For
modalBackdropOverlay fadeModal background
modalContentScale + fadeModal body
sheetContentSlide from bottomMobile sheets
dropdownDownScale from topDropdown menus
dropdownUpScale from bottomContext menus

Page Transitions

PresetEffectUse For
pageFadeSimple fadeRoute changes
pageSlideRTL slideNavigation

Micro-Interactions

PresetEffectUse For
tapScaleScale on tapButtons, cards
hoverLiftLift + shadowCards, list items
buttonPressPress effectInteractive buttons
cardHoverHover emphasisCard components

Loading States

PresetEffectUse For
pulseOpacity pulseSkeleton loaders
shimmerSliding highlightShimmer effect

Utility Animations

PresetEffectUse For
toastSlideInSlide + scaleNotifications
collapseHeight animationAccordions

Implementation Patterns

1. Page Transitions

Wrap routes with AnimatePresence for smooth page changes:

// frontend/src/components/AnimatedRoutes.tsx
import { Routes, Route, useLocation } from 'react-router';
import { AnimatePresence, motion } from 'motion/react';
import { pageFade } from '@/lib/animations';

export function AnimatedRoutes() {
  const location = useLocation();

  return (
    <AnimatePresence mode="wait">
      <motion.div key={location.pathname} {...pageFade} className="min-h-screen">
        <Routes location={location}>
          {/* routes */}
        </Routes>
      </motion.div>
    </AnimatePresence>
  );
}

2. Modal Animations

Use AnimatePresence for enter/exit animations:

import { motion, AnimatePresence } from 'motion/react';
import { modalBackdrop, modalContent } from '@/lib/animations';

function Modal({ isOpen, onClose, children }) {
  return (
    <AnimatePresence>
      {isOpen && (
        <>
          <motion.div
            {...modalBackdrop}
            className="fixed inset-0 z-50 bg-black/50"
            onClick={onClose}
          />
          <motion.div
            {...modalContent}
            className="fixed inset-0 z-50 flex items-center justify-center p-4 pointer-events-none"
          >
            <div className="bg-white rounded-2xl p-6 pointer-events-auto">
              {children}
            </div>
          </motion.div>
        </>
      )}
    </AnimatePresence>
  );
}

3. Staggered List Animations

Use parent container with child variants:

import { motion } from 'motion/react';
import { staggerContainer, staggerItem } from '@/lib/animations';

function ItemList({ items }) {
  return (
    <motion.ul
      variants={staggerContainer}
      initial="initial"
      animate="animate"
      className="space-y-2"
    >
      {items.map((item) => (
        <motion.li key={item.id} variants={staggerItem}>
          <ItemCard item={item} />
        </motion.li>
      ))}
    </motion.ul>
  );
}

4. Card Hover Interactions

Apply micro-interactions to cards:

import { motion } from 'motion/react';
import { cardHover, tapScale } from '@/lib/animations';

function Card({ onClick, children }) {
  return (
    <motion.div
      {...cardHover}
      {...tapScale}
      onClick={onClick}
      className="p-4 rounded-lg bg-white cursor-pointer"
    >
      {children}
    </motion.div>
  );
}

5. Skeleton Loaders with Motion

Use Motion pulse for consistent animation:

import { motion } from 'motion/react';
import { pulse } from '@/lib/animations';

function Skeleton({ className }) {
  return (
    <motion.div
      variants={pulse}
      initial="initial"
      animate="animate"
      className={"bg-gray-200 rounded " + className}
      aria-hidden="true"
    />
  );
}

6. Collapse/Expand Animations

For accordions and expandable sections:

import { motion, AnimatePresence } from 'motion/react';
import { collapse } from '@/lib/animations';

function Accordion({ isExpanded, children }) {
  return (
    <AnimatePresence>
      {isExpanded && (
        <motion.div {...collapse} className="overflow-hidden">
          {children}
        </motion.div>
      )}
    </AnimatePresence>
  );
}

AnimatePresence Rules

MANDATORY: Use AnimatePresence for exit animations:

// ✅ CORRECT: Wrap conditional renders
<AnimatePresence>
  {isVisible && (
    <motion.div {...fadeIn}>Content</motion.div>
  )}
</AnimatePresence>

// ❌ WRONG: No exit animation
{isVisible && (
  <motion.div {...fadeIn}>Content</motion.div>
)}

Mode options:

  • mode="wait" - Wait for exit before enter (page transitions)
  • mode="popLayout" - Layout animations for removing items
  • Default - Simultaneous enter/exit

RTL/Hebrew Considerations

The animation presets are RTL-aware:

  • slideInRight - Natural entry direction for Hebrew
  • staggerItemRight - RTL list animations
  • pageSlide - Pages slide from left (correct for RTL)

Performance Best Practices

  1. Use preset transitions: Already optimized
  2. Avoid layout animations on large lists: Can cause jank
  3. Use layout prop sparingly: Only when needed
  4. Prefer opacity/transform: Hardware accelerated
  5. Don't animate width/height directly: Use collapse preset
// ✅ CORRECT: Transform-based
<motion.div {...slideUp}>

// ❌ AVOID: Layout-heavy
<motion.div animate={{ width: '100%', marginLeft: '20px' }}>

Testing Animations

Verify 60fps performance:

  1. Open Chrome DevTools > Performance tab
  2. Record while triggering animations
  3. Check for frame drops below 60fps

Checklist for New Components

When adding animations:

  • Import from @/lib/animations, not inline values
  • Use AnimatePresence for conditional renders
  • Apply appropriate preset for the interaction type
  • Test with RTL locale (Hebrew)
  • Verify 60fps performance
  • Ensure animations don't block user interaction

Anti-Patterns (FORBIDDEN)

// ❌ NEVER use inline animation values
<motion.div initial={{ opacity: 0 }} animate={{ opacity: 1 }}>

// ❌ NEVER animate without AnimatePresence for conditionals
{isOpen && <motion.div exit={{ opacity: 0 }}>}

// ❌ NEVER animate layout-heavy properties
<motion.div animate={{ width: newWidth, height: newHeight }}>

// ❌ NEVER use CSS transitions alongside Motion
<motion.div {...fadeIn} className="transition-all duration-300">

Integration with Agents

Frontend UI Developer

  • Uses animation presets for all motion effects
  • References this skill for implementation patterns
  • Ensures consistent animation language

Rapid UI Designer

  • Specifies animation types in design specs
  • References available presets for motion design

Code Quality Reviewer

  • Checks for inline animation anti-patterns
  • Validates AnimatePresence usage
  • Ensures performance best practices

Skill Version: 1.0.0 Last Updated: 2026-01-06 Maintained by: Yonatan Gross

Related Skills

  • a11y-testing - Testing animations for reduced motion preferences and focus visibility
  • focus-management - Focus management during modal animations and page transitions
  • design-system-starter - Integrating animation presets into design system components
  • i18n-date-patterns - RTL-aware animations for Hebrew and Arabic layouts

Key Decisions

DecisionChoiceRationale
Animation LibraryMotion (Framer Motion)Declarative API, AnimatePresence, spring physics
Animation StrategyCentralized PresetsConsistency, maintainability, RTL awareness
Performance Target60fpsHardware-accelerated transforms only
Exit AnimationsAnimatePresence RequiredProper cleanup, layout stability
Transition TimingSpring-basedNatural motion, responsive feel

Capability Details

animation-presets

Keywords: animation, motion, preset, fadeIn, slideUp, scaleIn Solves:

  • How do I create consistent animations?
  • What animation presets are available?
  • Where should I define animations?

page-transitions

Keywords: page, transition, route, navigation, AnimatePresence Solves:

  • How do I animate page transitions?
  • Add route change animations
  • AnimatePresence for page exits

modal-animations

Keywords: modal, dialog, overlay, backdrop, entrance, exit Solves:

  • How do I animate modals?
  • Dialog entrance/exit animations
  • Backdrop fade effects

stagger-animations

Keywords: stagger, list, children, delay, sequence Solves:

  • How do I stagger list animations?
  • Animate children sequentially
  • List item entrance effects

hover-interactions

Keywords: hover, tap, whileHover, whileTap, micro-interaction Solves:

  • How do I add hover effects?
  • Button press animations
  • Micro-interactions for buttons

skeleton-loaders

Keywords: skeleton, loading, pulse, placeholder, shimmer Solves:

  • How do I create skeleton loaders?
  • Animated loading placeholders
  • Pulse animation for loading states

rtl-animations

Keywords: rtl, ltr, hebrew, arabic, direction, i18n Solves:

  • How do I handle RTL animations?
  • Direction-aware slide animations
  • Hebrew/Arabic animation support

collapse-expand

Keywords: collapse, expand, accordion, height, auto Solves:

  • How do I animate height changes?
  • Accordion expand/collapse
  • Animate to auto height

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

29.66%
按下载量换算44

OpenCode

22.72%
按下载量换算33

Antigravity

16.9%
按下载量换算25

Gemini CLI

14.07%
按下载量换算21

windsurf

9.02%
按下载量换算13

trae

3.7%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills