Along with the PhaseAnimator
, SwiftUI launched the KeyframeAnimator
in iOS 17, permitting builders to create superior animations utilizing keyframes. On this tutorial, we are going to delve into the KeyframeAnimator
and discover ways to create a extra intricate animation.
The PhaseAnimator
view (or modifier), which we mentioned within the earlier tutorial, offers builders with the power to create multi-step animations over a sequence of phases. By specifying the specified animations for every part, the PhaseAnimator
routinely animates the content material every time the part modifications. It simplifies the method of constructing complicated animations by dealing with the transitions between phases for you.
Working with KeyframeAnimator
For phase-based animation, it really works properly for animations that may be represented as discrete states. When a state transition occurs, all properties are animated concurrently. As soon as the animation for a selected state is accomplished, SwiftUI easily transitions to the following state. This course of continues throughout all animation phases.
Keyframe-based animation is designed to accommodate a selected kind of animation the place every property is animated independently. By using keyframes, we will animate particular person properties individually, which in flip affords us larger flexibility and management over our animations.
Let’s attempt to animate an emoji icon (as illustrated above) and you’ll perceive how we will use keyframe animator.
Defining the Animation Values
As talked about earlier, keyframe-based animation allows us to animate particular person properties independently. To make the most of the keyframe animator, we start by defining a struct that encompasses all of the properties we want to animate. Right here’s an instance:
struct AnimationValues { var scale = 1.0 var verticalStretch = 1.0 var translation = CGSize.zero var opacity = 1.0 } |
The preliminary values outline the preliminary state of the emoji icon. Later, we are going to change every of the properties to scale, stretch, and transfer the emoji icon.
Making use of the Keyframe Animator
Within the physique
closure, let’s replace the code like this to use the keyframe animator:
content material
.scaleEffect(worth.scale)
.scaleEffect(y: worth.verticalStretch)
.offset(worth.translation)
.opacity(worth.opacity)
} keyframes: { _ in
KeyframeTrack(.scale) {
CubicKeyframe(0.8, period: 0.2)
}
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Textual content(“🐻”) .font(.system(measurement: 100)) .keyframeAnimator(initialValue: AnimationValues()) { content material, worth in
content material .scaleEffect(worth.scale) .scaleEffect(y: worth.verticalStretch) .offset(worth.translation) .opacity(worth.opacity)
} keyframes: { _ in
KeyframeTrack(.scale) { CubicKeyframe(0.8, period: 0.2) } } |
As typical, we use a Textual content
view to show the emoji icon. To create a keyframe-based animation, we connect the keyframeAnimator
modifier to the textual content view.
The initialValue
parameter is supplied with the preliminary values that the keyframes will animate from. Inside the view builder closure, we’ve entry to 2 parameters. The primary parameter is a proxy worth that represents the modified view. The second parameter holds the interpolated worth generated by the keyframes.
We apply the specified animation results to the content material view by adjusting its scale, offset, and opacity. Lastly, it’s the keyframes
parameter. That is the place we outline the worth modifications that happen over time. These outlined keyframes shall be answerable for making use of the corresponding animations to the required worth.
Keyframes are organized into tracks, with every monitor governing a definite property of the animated kind. Within the offered code snippet, we particularly designated the keyframe monitor for the size property utilizing the CubicKeyframe
kind. We alter the scale of the emoji, lowering it to 80% of its unique measurement.
When you’ve made the code modifications, you must have the ability to see the animation immediately within the preview canvas. The keyframe animator animates the scale change and repeats it constantly.
Keyframe Sorts
Whereas we use the CubicKeyframe
kind, there are literally 4 various kinds of keyframes obtainable:
LinearKeyframe
– it interpolates linearly in vector area from the earlier keyframe.SpringKeyframe
– makes use of a spring operate to interpolate to the goal worth from the earlier keyframe.CubicKeyframe
– makes use of a cubic Bézier curve to interpolate between keyframes.MoveKeyframe
– instantly jumps to a worth with out interpolation.
Attempt to discover and take a look at totally different keyframe sorts and durations to see their behaviors in motion. By experimenting with numerous keyframe sorts and adjusting the period, you may acquire a deeper understanding of how they affect and form your animations.
Presently, we solely apply a single change for the scale
property. You’re free to outline different worth modifications over time. Right here is an instance:
KeyframeTrack(.scale) { CubicKeyframe(0.8, period: 0.2) CubicKeyframe(0.6, period: 0.3) CubicKeyframe(1.0, period: 0.3) CubicKeyframe(0.8, period: 0.2) CubicKeyframe(0.6, period: 0.3) CubicKeyframe(1.0, period: 0.3) } |
The code describes the size issue at particular instances inside the animation. Within the preview canvas, you’ll discover a smoother and extra fluid animation for the emoji icon.
A number of Keyframe Tracks
Up till now, we’ve targeted on a single keyframe monitor to change the size issue. Nonetheless, keyframes present the power to animate a number of results independently by defining separate tracks, every with its personal distinctive timing. By incorporating a number of tracks, we will concurrently animate numerous properties, enabling us to create extra superior animations.
In the identical demo, we will outline separate keyframe tracks for the vertical stretch, translation, and opacity properties. Right here is the pattern code:
content material
.scaleEffect(worth.scale)
.scaleEffect(y: worth.verticalStretch)
.offset(worth.translation)
.opacity(worth.opacity)
} keyframes: { _ in
KeyframeTrack(.verticalStretch) {
LinearKeyframe(1.2, period: 0.1)
SpringKeyframe(2.0, period: 0.2, spring: .snappy)
CubicKeyframe(1.05, period: 0.3)
CubicKeyframe(1.2, period: 0.2)
CubicKeyframe(1.1, period: 0.32)
CubicKeyframe(1.2, period: 0.2)
CubicKeyframe(1.05, period: 0.25)
CubicKeyframe(1.3, period: 0.23)
CubicKeyframe(1.0, period: 0.3)
}
KeyframeTrack(.scale) {
CubicKeyframe(0.8, period: 0.2)
CubicKeyframe(0.6, period: 0.3)
CubicKeyframe(1.0, period: 0.3)
CubicKeyframe(0.8, period: 0.2)
CubicKeyframe(0.6, period: 0.3)
CubicKeyframe(1.0, period: 0.3)
}
KeyframeTrack(.translation) {
SpringKeyframe(CGSize(width: 100, peak: 100), period: 0.4)
SpringKeyframe(CGSize(width: -50, peak: -300), period: 0.4)
SpringKeyframe(.zero, period: 0.2)
SpringKeyframe(CGSize(width: -50, peak: 200), period: 0.3)
SpringKeyframe(CGSize(width: -90, peak: 300), period: 0.3)
SpringKeyframe(.zero, period: 0.4)
}
KeyframeTrack(.opacity) {
LinearKeyframe(0.5, period: 0.2)
LinearKeyframe(1.0, period: 0.23)
LinearKeyframe(0.7, period: 0.25)
LinearKeyframe(1.0, period: 0.33)
LinearKeyframe(0.8, period: 0.2)
LinearKeyframe(1.0, period: 0.23)
}
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
Textual content(“🐻”) .font(.system(measurement: 100)) .keyframeAnimator(initialValue: AnimationValues()) { content material, worth in
content material .scaleEffect(worth.scale) .scaleEffect(y: worth.verticalStretch) .offset(worth.translation) .opacity(worth.opacity)
} keyframes: { _ in KeyframeTrack(.verticalStretch) { LinearKeyframe(1.2, period: 0.1) SpringKeyframe(2.0, period: 0.2, spring: .snappy) CubicKeyframe(1.05, period: 0.3) CubicKeyframe(1.2, period: 0.2) CubicKeyframe(1.1, period: 0.32) CubicKeyframe(1.2, period: 0.2) CubicKeyframe(1.05, period: 0.25) CubicKeyframe(1.3, period: 0.23) CubicKeyframe(1.0, period: 0.3) }
KeyframeTrack(.scale) { CubicKeyframe(0.8, period: 0.2) CubicKeyframe(0.6, period: 0.3) CubicKeyframe(1.0, period: 0.3) CubicKeyframe(0.8, period: 0.2) CubicKeyframe(0.6, period: 0.3) CubicKeyframe(1.0, period: 0.3) }
KeyframeTrack(.translation) { SpringKeyframe(CGSize(width: 100, peak: 100), period: 0.4) SpringKeyframe(CGSize(width: –50, peak: –300), period: 0.4) SpringKeyframe(.zero, period: 0.2) SpringKeyframe(CGSize(width: –50, peak: 200), period: 0.3) SpringKeyframe(CGSize(width: –90, peak: 300), period: 0.3) SpringKeyframe(.zero, period: 0.4) }
KeyframeTrack(.opacity) { LinearKeyframe(0.5, period: 0.2) LinearKeyframe(1.0, period: 0.23) LinearKeyframe(0.7, period: 0.25) LinearKeyframe(1.0, period: 0.33) LinearKeyframe(0.8, period: 0.2) LinearKeyframe(1.0, period: 0.23) } } |
By using a number of keyframe tracks, we will obtain an intriguing animation impact. On this case, the emoji icon will transfer round randomly, whereas its opacity varies at particular deadlines.
By default, keyframe animator retains operating the animation constantly. If you wish to cease the animation, you may set the repeat
parameter to false
.
You should utilize ZStack
and overlay one other emoji icon to create animation as proven under. I’ll go away this as an train so that you can discover and implement.
Abstract
KeyframeAnimator
is a useful function launched in iOS 17. In distinction to the PhaseAnimator
modifier, this new instrument in SwiftUI empowers builders to create superior animations utilizing keyframes.
By leveraging keyframes, builders can outline particular deadlines and exactly manipulate the properties of their animations. This enhanced management permits for the creation of intricate and dynamic visible results, leading to a extra fluid animations.
If you happen to discover this tutorial helpful, don’t overlook to take a look at our Mastering SwiftUI guide to dive deeper into SwiftUI.