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

swiftui-animationsswiftui animations 前端

Agent Skill

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

总安装

903

周安装

38

GitHub Stars

6

下载量

316
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/tryhuset/agent-skills --skill swiftui-animations

简介

swiftui-animations 用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构。
  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段。
  • 涉及页面改动时,应配合本地预览和构建检查确认视觉效果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。

SKILL.md

You are an expert in SwiftUI animations. Help developers create smooth, performant, and accessible animations following Apple's best practices.

Core Principles

How SwiftUI Animation Works

  1. Animations are driven by state changes – SwiftUI animates the *difference* between old and new state
  2. Transactions propagate down – When you wrap a state change in withAnimation, a transaction flows through the view hierarchy
  3. Only animatable data animates – Types must conform to Animatable (most built-in types do: CGFloat, Color, CGSize, etc.)
  4. Animation is declarative – You describe what the end state looks like, SwiftUI figures out the interpolation

Mental Model

State Change → Transaction Created → View Diffed → Animatable Properties Interpolated → Frames Rendered

Think of animations as *automatic interpolation between two snapshots of your view*. Your job is to:

  1. Define the two states clearly
  2. Tell SwiftUI which timing curve to use
  3. Ensure the properties you want animated are Animatable

Implicit Animations

The easiest way to animate – attach an .animation() modifier or wrap state changes in withAnimation.

withAnimation (Recommended)

Wraps a state change so all resulting view updates animate:

withAnimation(.spring(duration: 0.4, bounce: 0.3)) {
    isExpanded.toggle()
}

When to use: When you control the state change (button taps, gestures, responses).

.animation() Modifier

Animates whenever the observed value changes:

Circle()
    .scaleEffect(isActive ? 1.2 : 1.0)
    .animation(.easeInOut(duration: 0.3), value: isActive)

When to use: When state changes outside your control (bindings, parent state).

Critical: Always use value: parameter. The old .animation(.default) without value is deprecated and causes unpredictable behavior.

Timing Curves

CurveUse Case
.linearMechanical, constant motion (progress bars)
.easeInObjects entering from user action
.easeOutObjects settling into place
.easeInOutGeneral UI, symmetrical movement
.spring(duration:bounce:)Default choice for iOS – natural feel
.spring(response:dampingFraction:)Fine-tuned spring physics
.interactiveSpringGesture-driven, snappy response

Rule of thumb: Use .spring() unless you have a reason not to. Apple's HIG recommends spring animations for most interactions.

Explicit Animations

For custom types and complex animations where implicit animation isn't enough.

The Animatable Protocol

Any type can animate if it provides an animatableData property:

struct AnimatableGradient: View, Animatable {
    var progress: CGFloat

    var animatableData: CGFloat {
        get { progress }
        set { progress = newValue }
    }

    var body: some View {
        // Use progress (0→1) to interpolate colors, positions, etc.
    }
}

SwiftUI calls the setter repeatedly with interpolated values between old and new state.

AnimatableModifier

For reusable animated effects:

struct CountingModifier: AnimatableModifier {
    var value: Double

    var animatableData: Double {
        get { value }
        set { value = newValue }
    }

    func body(content: Content) -> some View {
        content.overlay(Text("\(Int(value))"))
    }
}

// Usage: Text counts from 0 to 100
Text("Score").modifier(CountingModifier(value: score))

Animating Shapes

Shapes animate via their animatableData. For multiple values, use AnimatablePair:

struct Wedge: Shape {
    var startAngle: Double
    var endAngle: Double

    var animatableData: AnimatablePair<Double, Double> {
        get { AnimatablePair(startAngle, endAngle) }
        set {
            startAngle = newValue.first
            endAngle = newValue.second
        }
    }

    func path(in rect: CGRect) -> Path { /* ... */ }
}

Nested pairs for 3+ values: AnimatablePair<CGFloat, AnimatablePair<CGFloat, CGFloat>>

Transitions

Transitions animate views entering and leaving the view hierarchy. They only apply when views are inserted/removed (via if, switch, ForEach changes).

Built-in Transitions

if showDetail {
    DetailView()
        .transition(.slide)
}
TransitionEffect
.opacityFade in/out
.slideSlide from leading edge
.move(edge:)Slide from specified edge
.scaleGrow from center
.scale(anchor:)Grow from anchor point
.push(from:)Push in, old view pushed out
.offset(x:y:)Animate from offset position

Combining Transitions

.transition(.scale.combined(with: .opacity))

// Or use extension for reusability:
extension AnyTransition {
    static var scaleAndFade: AnyTransition {
        .scale(scale: 0.8).combined(with: .opacity)
    }
}

Asymmetric Transitions

Different animations for insertion vs removal:

.transition(.asymmetric(
    insertion: .move(edge: .trailing).combined(with: .opacity),
    removal: .move(edge: .leading).combined(with: .opacity)
))

Custom Transitions

Build from any ViewModifier:

struct SlideAndBlur: ViewModifier {
    let active: Bool

    func body(content: Content) -> some View {
        content
            .offset(x: active ? 200 : 0)
            .blur(radius: active ? 10 : 0)
    }
}

extension AnyTransition {
    static var slideBlur: AnyTransition {
        .modifier(
            active: SlideAndBlur(active: true),
            identity: SlideAndBlur(active: false)
        )
    }
}

Key gotcha: Transitions require withAnimation around the state change that adds/removes the view. The .animation() modifier on the view itself won't trigger transitions.

Gesture-Driven Animations

Interactive animations that respond to user touch in real-time.

Basic Drag with Spring Release

@State private var offset: CGSize = .zero

var body: some View {
    Circle()
        .offset(offset)
        .gesture(
            DragGesture()
                .onChanged { offset = $0.translation }
                .onEnded { _ in
                    withAnimation(.spring(response: 0.4, dampingFraction: 0.6)) {
                        offset = .zero
                    }
                }
        )
}

GestureState for Auto-Reset

@GestureState automatically resets when gesture ends – perfect for temporary states:

@GestureState private var dragOffset: CGSize = .zero

var body: some View {
    Card()
        .offset(dragOffset)
        .animation(.interactiveSpring, value: dragOffset)
        .gesture(
            DragGesture()
                .updating($dragOffset) { value, state, _ in
                    state = value.translation
                }
        )
}

Velocity-Aware Animations

Use gesture velocity for natural-feeling releases:

.onEnded { gesture in
    let velocity = CGVector(
        dx: gesture.velocity.width / 300,
        dy: gesture.velocity.height / 300
    )
    withAnimation(.spring(response: 0.4, dampingFraction: 0.7, blendDuration: 0.25).speed(1)) {
        // Factor velocity into final position
    }
}

Tracking Animation Progress

Use GeometryReader + PreferenceKey or iOS 17's onGeometryChange to read animated values for coordinated effects.

Spring Parameters for Gestures

ContextRecommended Spring
Dragging (live).interactiveSpring or no animation
Release to origin.spring(response: 0.4, dampingFraction: 0.7)
Release to target.spring(response: 0.5, dampingFraction: 0.8)
Snap to position.spring(response: 0.3, dampingFraction: 0.9)

Modern APIs (iOS 17+)

iOS 17 introduced powerful declarative animation APIs that simplify complex sequences.

PhaseAnimator

Cycles through discrete phases automatically – perfect for looping or multi-step animations:

enum BouncePhase: CaseIterable {
    case initial, compress, stretch, settle

    var scale: CGSize {
        switch self {
        case .initial: CGSize(width: 1, height: 1)
        case .compress: CGSize(width: 1.1, height: 0.9)
        case .stretch: CGSize(width: 0.9, height: 1.1)
        case .settle: CGSize(width: 1, height: 1)
        }
    }
}

PhaseAnimator(BouncePhase.allCases) { phase in
    Circle()
        .scaleEffect(phase.scale)
} animation: { phase in
    switch phase {
    case .initial: .spring(duration: 0.2, bounce: 0.5)
    default: .spring(duration: 0.25, bounce: 0.3)
    }
}

Trigger-based: Add trigger: parameter to run on value change instead of looping:

PhaseAnimator(phases, trigger: triggerValue) { phase in ... }

KeyframeAnimator

Fine-grained control with keyframes on multiple properties:

KeyframeAnimator(initialValue: AnimationState()) { state in
    Circle()
        .offset(x: state.xOffset)
        .scaleEffect(state.scale)
        .opacity(state.opacity)
} keyframes: { _ in
    KeyframeTrack(\.xOffset) {
        LinearKeyframe(0, duration: 0.1)
        SpringKeyframe(100, duration: 0.4, spring: .bouncy)
        SpringKeyframe(0, duration: 0.3)
    }
    KeyframeTrack(\.scale) {
        LinearKeyframe(1.0, duration: 0.1)
        CubicKeyframe(1.3, duration: 0.2)
        CubicKeyframe(1.0, duration: 0.4)
    }
}

Keyframe types:

  • LinearKeyframe – Constant velocity
  • CubicKeyframe – Bezier easing
  • SpringKeyframe – Physics-based
  • MoveKeyframe – Instant jump (no interpolation)

New Spring Syntax

iOS 17 simplified spring parameters:

// Old (still works)
.spring(response: 0.5, dampingFraction: 0.7)

// New – more intuitive
.spring(duration: 0.5, bounce: 0.3)  // bounce: 0 = no bounce, 1 = max bounce

// Presets
.spring(.smooth)    // No bounce
.spring(.snappy)    // Slight bounce
.spring(.bouncy)    // Pronounced bounce

When to Use What

ScenarioAPI
Single state changewithAnimation
Looping/cycling animationPhaseAnimator
Complex multi-property choreographyKeyframeAnimator
User-triggered sequencePhaseAnimator with trigger:
Fine-tuned timing controlKeyframeAnimator

Critical Rules

DO:

  • Always use value: parameter with .animation() modifier – the valueless version is deprecated and buggy
  • Prefer withAnimation over .animation() – more explicit control over what triggers animation
  • Use springs as default – they feel more natural than linear/ease curves
  • Respect reduced motion – check accessibilityReduceMotion (see Accessibility section)
  • Animate layout, not frames – use .offset(), .scaleEffect(), .opacity() rather than changing frame directly
  • Keep animations under 400ms for UI responses – longer feels sluggish
  • Test on device – Simulator timing differs from real hardware

DO NOT:

  • Don't animate inside body computation – body should be pure; trigger animations from state changes
  • Don't use .animation() without value: – causes unpredictable cascading animations
  • Don't fight the framework – if an animation is hard to achieve, reconsider the approach
  • Don't animate too many properties simultaneously – pick 2-3 max for clarity
  • Don't use DispatchQueue.main.asyncAfter for sequencing – use PhaseAnimator or completion-based APIs
  • Don't nest withAnimation blocks – the innermost wins, outer is ignored
  • Don't assume animation completion – SwiftUI doesn't guarantee completion callbacks; use Transaction for critical sequencing

Common Gotchas

ProblemCauseFix
Transition doesn't animateMissing withAnimation around state changeWrap if condition change in withAnimation
Animation happens twiceUsing both withAnimation and .animation()Pick one approach
Choppy animationAnimating non-animatable propertyCheck type conforms to Animatable
Spring never settlesdampingFraction too lowUse 0.7+ for settling, or add .speed()
Animation on wrong viewTransaction propagating unexpectedlyUse .transaction {$0.animation = nil} to block
List items animate weirdlyMissing stable idEnsure Identifiable with stable IDs

Accessibility

Respecting Reduced Motion

Users can enable "Reduce Motion" in system settings. Always provide alternatives:

@Environment(\.accessibilityReduceMotion) var reduceMotion

var body: some View {
    Card()
        .transition(reduceMotion ? .opacity : .slide.combined(with: .opacity))
}

// For animations:
func animateChange() {
    if reduceMotion {
        // Instant or simple fade
        withAnimation(.easeOut(duration: 0.15)) {
            isExpanded.toggle()
        }
    } else {
        // Full spring animation
        withAnimation(.spring(duration: 0.4, bounce: 0.3)) {
            isExpanded.toggle()
        }
    }
}

Quick Helper

extension Animation {
    static func respectful(_ animation: Animation, reducedMotion: Animation = .easeOut(duration: 0.15)) -> Animation {
        // Use at call site with @Environment check
        animation
    }
}

// Or create a View extension:
extension View {
    func animateRespectfully<V: Equatable>(
        _ animation: Animation,
        value: V,
        reduceMotion: Bool
    ) -> some View {
        self.animation(reduceMotion ? .easeOut(duration: 0.15) : animation, value: value)
    }
}

Guidelines

  • Fade is always safe.opacity transitions work for everyone
  • Reduce, don't remove – some motion helps comprehension; just make it subtle
  • Avoid vestibular triggers – large zooms, parallax, spinning are problematic
  • Test with setting enabled – Settings → Accessibility → Motion → Reduce Motion

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

31.16%
按下载量换算98

Antigravity

20.08%
按下载量换算63

Gemini CLI

15.63%
按下载量换算49

Codex

13.39%
按下载量换算42

OpenCode

8.15%
按下载量换算26

Cursor

3.49%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills