0Pricing
SwiftUI Academy · บทเรียน

แอนิเมชันโดยนัย

ทำให้การเปลี่ยนแปลงสถานะเคลื่อนไหวด้วยตัวปรับแต่งแอนิเมชัน

แอนิเมชันโดยนัย เป็นบทเรียน SwiftUI Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน SwiftUI Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส SwiftUI Academy มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

Motion Makes It Feel Alive

A change that snaps into place feels jarring. With animation, SwiftUI smoothly tweens between the old and new states for you. ✨

What Implicit Means

An implicit animation watches a value and animates any view change caused by it, without you describing each frame.

The .animation Modifier

You attach .animation to a view and tie it to a value. When that value changes, SwiftUI animates the affected properties.

Circle()
    .scaleEffect(big ? 2 : 1)
    .animation(.default, value: big)

Always Pass a Value

Modern .animation(_:value:) needs the value to observe. SwiftUI only animates when that exact value changes, keeping motion predictable.

What Gets Animated

SwiftUI animates the animatable properties between states: position, size, opacity, rotation, and color all tween smoothly.

Pick a Curve

The first argument is the animation curve. Common choices are .default, .easeInOut, .linear, and .spring for different feels.

.animation(.easeInOut, value: isOn)

Control the Duration

Add a duration to set how long the motion lasts. A short 0.2s feels snappy; a longer 1s feels relaxed.

.animation(.easeInOut(duration: 0.4), value: isOn)

Animate Opacity

Fading is a classic implicit animation. Change opacity with a bound value and SwiftUI cross-fades the view in or out.

Text("Hi")
    .opacity(show ? 1 : 0)
    .animation(.easeIn, value: show)

Animate Rotation

Tie rotationEffect to a value and the view spins smoothly when it flips, perfect for chevrons and loading marks.

.rotationEffect(.degrees(open ? 90 : 0))
.animation(.default, value: open)

Scope It to One Value

Because you name the value, only changes to that value animate. Other view updates stay instant and unaffected.

Turn Animation Off

Pass nil as the animation to disable motion for that value. Handy when a change should jump instantly instead.

.animation(nil, value: count)

Quick Check

How does an implicit animation know when to run?

Recap: Implicit Animations

You learned that .animation(_:value:) smoothly tweens view changes tied to a value. Pick a curve, set duration, and SwiftUI handles the rest. 🎉

คำถามที่พบบ่อย

บทเรียน “แอนิเมชันโดยนัย” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “แอนิเมชันโดยนัย” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส SwiftUI Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส SwiftUI Academy มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “แอนิเมชันโดยนัย”

ทำให้การเปลี่ยนแปลงสถานะเคลื่อนไหวด้วยตัวปรับแต่งแอนิเมชัน คุณปฏิบัติ SwiftUI Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน SwiftUI Academy หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน SwiftUI Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน

บทเรียน “แอนิเมชันโดยนัย” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน SwiftUI Academy นี้ได้ไหม

ได้ บทเรียน SwiftUI Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. แอนิเมชันโดยนัย
  2. แอนิเมชันชัดแจ้งด้วย withAnimation
  3. ทรานซิชันการเพิ่มและนำออก
  4. เส้นโค้งจังหวะแบบสปริงและกำหนดเอง
← กลับไปที่ SwiftUI Academy