icons-badges

Icon & Badge Animation Principles

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "icons-badges" with this command: npx skills add dylantarre/animation-principles/dylantarre-animation-principles-icons-badges

Icon & Badge Animation Principles

Apply Disney's 12 principles to small UI elements for personality and meaningful feedback.

Principles Applied to Icons

  1. Squash & Stretch

Heart icons can squash/stretch on "like" tap. Notification badges can bounce with squash on arrival. Adds life to small elements.

  1. Anticipation

Before icon action, brief scale down (0.9) for 50ms. Bell can tilt back before ringing forward. Prepares for action.

  1. Staging

Active/important icons should be visually prominent: color, size, or animation. Badges use contrasting colors to stand out.

  1. Straight Ahead & Pose to Pose

Simple icons use pose-to-pose (two states). Complex icon animations (morphing) can use straight-ahead for organic transitions.

  1. Follow Through & Overlapping Action

Bell ring continues after user interaction stops. Badge number updates before badge bounce settles. Multi-part icons offset timing.

  1. Ease In & Ease Out

Icon hover: ease-out . Icon click: ease-in-out . Bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55) for overshoot.

  1. Arcs

Bell swinging follows pendulum arc. Refresh icons spin in true circular arcs. Arrows can arc during state changes.

  1. Secondary Action

While icon scales (primary), color changes (secondary), glow pulses (tertiary). Badge count changes while badge bounces.

  1. Timing
  • Hover scale: 100-150ms

  • Click feedback: 50-100ms

  • Badge bounce: 300-400ms

  • Bell ring: 400-600ms

  • Status pulse: 1500-2500ms

  • Morph transition: 250-350ms

  1. Exaggeration

Celebratory icons (confetti, hearts) can be very animated. Functional icons (menu, close) should be subtle. Match purpose.

  1. Solid Drawing

Icons must remain crisp at all animation frames. Maintain stroke consistency. Badge numbers should be legible during motion.

  1. Appeal

Animated icons add personality. A bouncing notification feels alive. A pulsing status feels responsive. Small touches matter greatly.

CSS Implementation

.icon-btn:hover .icon { transform: scale(1.15); transition: transform 150ms ease-out; }

.icon-btn:active .icon { transform: scale(0.9); transition: transform 50ms ease-in; }

.badge { animation: badgeBounce 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55); }

@keyframes badgeBounce { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

.status-indicator { animation: pulse 2000ms ease-in-out infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.1); } }

.bell-icon:hover { animation: ring 500ms ease-in-out; }

@keyframes ring { 0%, 100% { transform: rotate(0); } 20%, 60% { transform: rotate(15deg); } 40%, 80% { transform: rotate(-15deg); } }

Key Properties

  • transform : scale, rotate

  • opacity : pulse effects

  • animation : complex sequences

  • fill /stroke : SVG color changes

  • filter : glow effects

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

mobile-touch

No summary provided by upstream source.

Repository SourceNeeds Review
General

motion-designer

No summary provided by upstream source.

Repository SourceNeeds Review
General

video-motion-graphics

No summary provided by upstream source.

Repository SourceNeeds Review
General

micro-interactions

No summary provided by upstream source.

Repository SourceNeeds Review