Optimize 8-bit animations for smooth performance. Apply when creating animated pixel art, game UI effects, or any retro-styled animations.
Optimize animations for smooth pixel art rendering and game-like interfaces.
Use CSS transforms for GPU-accelerated animations:
<div className="transition-transform hover:scale-110" />
<div className="translate-x-0 translate-y-0" />
Avoid animating:
width, height (triggers layout)margin, padding (triggers layout)top, left (triggers layout)Prefer animating:
transform (GPU accelerated)opacity (GPU accelerated)filter (GPU accelerated)Wrap animated SVGs in divs for hardware acceleration:
function PixelSpinner() {
return (
<div className="animate-spin">
<svg viewBox="0 0 16 16">
<rect x="2" y="2" width="4" height="4" fill="currentColor" />
</svg>
</div>
);
}
Use pulse animations for retro loading indicators:
function RetroSkeleton() {
return (
<div className="relative animate-pulse">
<div className="h-20 bg-muted" />
</div>
);
}
Define pixel-art-specific animations:
<div
className="retro animate-[blink_0.5s_step-end_infinite]"
style={{
textShadow: "1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff"
}}
>
LEVEL UP!
</div>
<style>{`
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
`}</style>
Apply animations based on game state:
<div
className={cn(
"transition-all duration-300",
health <= 25 && "animate-pulse bg-red-500/20",
isLevelUp && "animate-bounce"
)}
/>
Use Radix state-based animations for overlays:
<DialogContent
className={cn(
"data-[state=open]:animate-in data-[state=closed]:animate-out",
"data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
"data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95"
)}
/>
<AccordionContent
className={cn(
"overflow-hidden data-[state=closed]:animate-accordion-up",
"data-[state=open]:animate-accordion-down"
)}
/>
transform over top/leftstep-end for pixel-art feelanimate-pulsecomponents/ui/8bit/spinner.tsx - Animated spinnercomponents/ui/8bit/xp-bar.tsx - Custom blink animationcomponents/ui/8bit/skeleton.tsx - Loading skeletoncomponents/ui/8bit/accordion.tsx - Radix state animationsnpx skills add TheOrcDev/animation-performance-retro下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer