{
  "schemaVersion": "1.0",
  "item": {
    "slug": "animations",
    "name": "Animations",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/animations",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/animations",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/animations",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=animations",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/animations"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/animations",
    "agentPageUrl": "https://openagent3.xyz/skills/animations/agent",
    "manifestUrl": "https://openagent3.xyz/skills/animations/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/animations/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "GPU-Accelerated Properties",
        "body": "Only these properties animate on the compositor thread (60fps):\n\nPropertyUsetransformMove, rotate, scale (translateX, rotate, scale)opacityFade in/out\n\nEverything else triggers layout or paint. Avoid animating:\n\nwidth, height, margin, padding (layout thrashing)\ntop, left, right, bottom (use transform instead)\nborder-width, font-size (expensive reflows)\n\n/* ❌ Triggers layout every frame */\n.slide { left: 100px; transition: left 0.3s; }\n\n/* ✅ GPU accelerated */\n.slide { transform: translateX(100px); transition: transform 0.3s; }"
      },
      {
        "title": "Reduced Motion",
        "body": "~5% of users experience vestibular disorders (dizziness, nausea from motion).\n\n/* Only animate if user hasn't requested reduced motion */\n@media (prefers-reduced-motion: no-preference) {\n  .animated { animation: slide-in 0.5s ease-out; }\n}\n\n/* Or disable for those who requested it */\n@media (prefers-reduced-motion: reduce) {\n  *, *::before, *::after {\n    animation-duration: 0.01ms !important;\n    animation-iteration-count: 1 !important;\n    transition-duration: 0.01ms !important;\n  }\n}\n\nKeep subtle fades and color changes even with reduced motion. Remove parallax, bouncing, infinite loops."
      },
      {
        "title": "Timing Functions",
        "body": "EasingUse caseease-outElements entering view (appears responsive)ease-inElements exiting view (accelerates away)ease-in-outElements moving within viewlinearOnly for spinners, progress bars, color cycling\n\n/* Custom bounce */\ntransition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);\n\n/* Material Design standard */\ntransition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);"
      },
      {
        "title": "Duration Guidelines",
        "body": "TypeDurationMicro-interactions (hover, focus)100-200msTransitions (modals, dropdowns)200-300msPage transitions300-500msComplex choreography500-1000ms max\n\nAnything over 500ms feels sluggish. Shorter is usually better."
      },
      {
        "title": "CSS Transitions vs Animations",
        "body": "Transitions: A to B state changes\n\n.button { transform: scale(1); transition: transform 0.2s ease-out; }\n.button:hover { transform: scale(1.05); }\n\nAnimations: Multi-step, auto-play, looping\n\n@keyframes fadeSlideIn {\n  0% { opacity: 0; transform: translateY(20px); }\n  100% { opacity: 1; transform: translateY(0); }\n}\n.card { animation: fadeSlideIn 0.5s ease-out forwards; }\n\nUse transitions for hover/focus states. Use animations for on-load effects and sequences."
      },
      {
        "title": "will-change",
        "body": "Only use as optimization when you have specific performance problems:\n\n/* ✅ Apply before animation starts, remove after */\n.card:hover { will-change: transform; }\n.card { will-change: auto; }\n\n/* ❌ Never apply globally */\n* { will-change: transform, opacity; }  /* Wastes GPU memory */"
      },
      {
        "title": "Transition Property Specificity",
        "body": "/* ❌ Animates everything including unintended properties */\n.card { transition: all 0.3s; }\n\n/* ✅ Only animates what you need */\n.card { transition: transform 0.3s, box-shadow 0.3s; }\n\nall can cause unexpected animations on color, background, border changes."
      },
      {
        "title": "React/Framework Traps",
        "body": "Exit animations require AnimatePresence:\n\n/* ❌ Exit animation never plays */\n{isVisible && <motion.div exit={{ opacity: 0 }} />}\n\n/* ✅ Wrap conditional rendering */\n<AnimatePresence>\n  {isVisible && <motion.div exit={{ opacity: 0 }} />}\n</AnimatePresence>\n\nStable keys for list animations:\n\n/* ❌ Index keys cause erratic animations */\n{items.map((item, i) => <li key={i}>{item}</li>)}\n\n/* ✅ Stable IDs */\n{items.map(item => <li key={item.id}>{item.text}</li>)}\n\nAutoAnimate parent must be unconditional:\n\n/* ❌ Ref can't attach to conditional element */\n{showList && <ul ref={parent}>...</ul>}\n\n/* ✅ Parent always renders, children are conditional */\n<ul ref={parent}>{showList && items.map(...)}</ul>"
      },
      {
        "title": "Library Selection",
        "body": "LibrarySizeBest forCSS only0kbHover states, simple transitionsAutoAnimate3kbLists, accordions, toasts (90% of UI animations)Motion22kbGestures, physics, scroll animations, complex choreographyGSAP60kbTimelines, creative animation, scroll-triggered sequences\n\nStart with CSS. Add AutoAnimate for list animations. Only add Motion/GSAP for complex needs."
      },
      {
        "title": "Common Mistakes",
        "body": "Animating width/height instead of scale—causes layout thrashing\nInfinite animations without pause control—no way to stop\nSame easing for enter and exit—use ease-out for enter, ease-in for exit\nIgnoring prefers-reduced-motion—causes physical discomfort\nDuration over 500ms—feels sluggish\ntransition: all catching unintended properties\nMissing AnimatePresence for exit animations in React"
      }
    ],
    "body": "GPU-Accelerated Properties\n\nOnly these properties animate on the compositor thread (60fps):\n\nProperty\tUse\ntransform\tMove, rotate, scale (translateX, rotate, scale)\nopacity\tFade in/out\n\nEverything else triggers layout or paint. Avoid animating:\n\nwidth, height, margin, padding (layout thrashing)\ntop, left, right, bottom (use transform instead)\nborder-width, font-size (expensive reflows)\n/* ❌ Triggers layout every frame */\n.slide { left: 100px; transition: left 0.3s; }\n\n/* ✅ GPU accelerated */\n.slide { transform: translateX(100px); transition: transform 0.3s; }\n\nReduced Motion\n\n~5% of users experience vestibular disorders (dizziness, nausea from motion).\n\n/* Only animate if user hasn't requested reduced motion */\n@media (prefers-reduced-motion: no-preference) {\n  .animated { animation: slide-in 0.5s ease-out; }\n}\n\n/* Or disable for those who requested it */\n@media (prefers-reduced-motion: reduce) {\n  *, *::before, *::after {\n    animation-duration: 0.01ms !important;\n    animation-iteration-count: 1 !important;\n    transition-duration: 0.01ms !important;\n  }\n}\n\n\nKeep subtle fades and color changes even with reduced motion. Remove parallax, bouncing, infinite loops.\n\nTiming Functions\nEasing\tUse case\nease-out\tElements entering view (appears responsive)\nease-in\tElements exiting view (accelerates away)\nease-in-out\tElements moving within view\nlinear\tOnly for spinners, progress bars, color cycling\n/* Custom bounce */\ntransition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);\n\n/* Material Design standard */\ntransition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n\nDuration Guidelines\nType\tDuration\nMicro-interactions (hover, focus)\t100-200ms\nTransitions (modals, dropdowns)\t200-300ms\nPage transitions\t300-500ms\nComplex choreography\t500-1000ms max\n\nAnything over 500ms feels sluggish. Shorter is usually better.\n\nCSS Transitions vs Animations\n\nTransitions: A to B state changes\n\n.button { transform: scale(1); transition: transform 0.2s ease-out; }\n.button:hover { transform: scale(1.05); }\n\n\nAnimations: Multi-step, auto-play, looping\n\n@keyframes fadeSlideIn {\n  0% { opacity: 0; transform: translateY(20px); }\n  100% { opacity: 1; transform: translateY(0); }\n}\n.card { animation: fadeSlideIn 0.5s ease-out forwards; }\n\n\nUse transitions for hover/focus states. Use animations for on-load effects and sequences.\n\nwill-change\n\nOnly use as optimization when you have specific performance problems:\n\n/* ✅ Apply before animation starts, remove after */\n.card:hover { will-change: transform; }\n.card { will-change: auto; }\n\n/* ❌ Never apply globally */\n* { will-change: transform, opacity; }  /* Wastes GPU memory */\n\nTransition Property Specificity\n/* ❌ Animates everything including unintended properties */\n.card { transition: all 0.3s; }\n\n/* ✅ Only animates what you need */\n.card { transition: transform 0.3s, box-shadow 0.3s; }\n\n\nall can cause unexpected animations on color, background, border changes.\n\nReact/Framework Traps\n\nExit animations require AnimatePresence:\n\n/* ❌ Exit animation never plays */\n{isVisible && <motion.div exit={{ opacity: 0 }} />}\n\n/* ✅ Wrap conditional rendering */\n<AnimatePresence>\n  {isVisible && <motion.div exit={{ opacity: 0 }} />}\n</AnimatePresence>\n\n\nStable keys for list animations:\n\n/* ❌ Index keys cause erratic animations */\n{items.map((item, i) => <li key={i}>{item}</li>)}\n\n/* ✅ Stable IDs */\n{items.map(item => <li key={item.id}>{item.text}</li>)}\n\n\nAutoAnimate parent must be unconditional:\n\n/* ❌ Ref can't attach to conditional element */\n{showList && <ul ref={parent}>...</ul>}\n\n/* ✅ Parent always renders, children are conditional */\n<ul ref={parent}>{showList && items.map(...)}</ul>\n\nLibrary Selection\nLibrary\tSize\tBest for\nCSS only\t0kb\tHover states, simple transitions\nAutoAnimate\t3kb\tLists, accordions, toasts (90% of UI animations)\nMotion\t22kb\tGestures, physics, scroll animations, complex choreography\nGSAP\t60kb\tTimelines, creative animation, scroll-triggered sequences\n\nStart with CSS. Add AutoAnimate for list animations. Only add Motion/GSAP for complex needs.\n\nCommon Mistakes\nAnimating width/height instead of scale—causes layout thrashing\nInfinite animations without pause control—no way to stop\nSame easing for enter and exit—use ease-out for enter, ease-in for exit\nIgnoring prefers-reduced-motion—causes physical discomfort\nDuration over 500ms—feels sluggish\ntransition: all catching unintended properties\nMissing AnimatePresence for exit animations in React"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/animations",
    "publisherUrl": "https://clawhub.ai/ivangdavila/animations",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/animations",
    "downloadUrl": "https://openagent3.xyz/downloads/animations",
    "agentUrl": "https://openagent3.xyz/skills/animations/agent",
    "manifestUrl": "https://openagent3.xyz/skills/animations/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/animations/agent.md"
  }
}