SwiftUI 中创建反弹动画的实现
swiftui 中的动画
在写动画之前呢先简单回顾一下 swiftui 中动画的几个要点:
- 动画是 view 发生变化时的渐变效果
- swiftui 动画分为隐式动画( .animation() )与显式动画( withanimation() )两种
- 隐式动画是给 view 加动画,view 所有的能动画的变化都能被隐式动画影响
- 显式动画是针对某个变化进行动画,能精准控制。
- view 的插入和移除通过过渡( transition )来做效果,可以组合多个过渡或自定义过渡
- 要构建自定义动画,我们需要实现一个可动画的 view 修饰器(遵守 animatablemodier 协议)或者实现一个 geometryeffect ,并将可动画的属性通过 animatabledata 暴露出来
反弹动画
反弹动画属于“起始点和终止点相等”的动画,所以不能够通过 swiftui 中内建的动画来实现(因为这个 view 从结果来看没有发生变化)
我们先来构建反弹动画修饰器的框架如下:
struct bounce: animatablemodifier { var animcount: cgfloat = 0 var amplitude: cgfloat = 10 // 振幅 var animatabledata: cgfloat { get { animcount } set { animcount = newvalue } } func body(content: content) -> some view { // change view to animate } }
下面一步一步来
实现动画曲线
实现 body 方法,好让 times 每次增加时 view 能以反弹的方式进行动画。一次反弹就是 view 向上弹起又落下,下面是动画曲线大致的样子:
三角函数是 y = -abs(sin x)
,所以 body 方法这样实现:
struct bounce: animatablemodifier { ... func body(content: content) -> some view { let offset: cgfloat = -abs(sin(animcount * .pi * 2) * amplitude) return content.offset(y: offset) } }
测试代码:
struct bouncingview: view { @state var taps = 0 var body: some view { button(action: { withanimation(animation.easeinout(duration: 1)) { taps += 1 } }, label: { roundedrectangle(cornerradius: 15) .modifier(bounce(animcount: cgfloat(taps))) }) .frame(width: 100, height: 100) } }
点击按钮,就能弹两次了~~
这个 @state var taps
其实并没有什么实际的意义,只是为了触发动画。
因为 swiftui 里只有 view 的状态发生变化才会触发动画,而无法通过某个事件来触发;而我们的动画是一个初始状态和结束状态相等的情况,并没有状态的变化,所以这里强行把点击的次数作为 view 状态的变化来触发动画。
我找了好久有没有更优雅的方式来解决这个问题,然而并没有找到 = =b
view 扩展
暴露给外面的 animcount
应该是一个 int 才对,那么就增加一个 animvalue
来代替它
struct bounce: animatablemodifier { let animcount: int var animvalue: cgfloat var amplitude: cgfloat = 10 // 振幅 init(animcount: int) { self.animcount = animcount self.animvalue = cgfloat(animcount) } var animatabledata: cgfloat { get { animvalue } set { animvalue = newvalue } } func body(content: content) -> some view { let offset: cgfloat = -abs(sin(animvalue * .pi * 2) * amplitude) return content.offset(y: offset) } }
因为 animvalue
被隐藏起来了,所以需要初始化方法
为了方便使用,再添加一个 view 的扩展方法:
extension view { func bounce(animcount: int) -> some view { self.modifier(bounce(animcount: animcount)) } }
增加弹性
现在虽然能弹了,但是相对还比较生硬,就想在 view “落地“后再给它增加振幅逐步衰减的几次反弹;一开始尝试了简单的减半反弹,实验证明观感更差,看起来有点难受。
我们实际生活中的反弹的振幅变化应该是符合 阻尼正弦波 的,参考链接里的公式,修改如下:
struct bounce: animatablemodifier { let animcount: int var animvalue: cgfloat var amplitude: cgfloat // 振幅 var bouncingtimes: int init(animcount: int, amplitude: cgfloat = 10, bouncingtimes: int = 3) { self.animcount = animcount self.animvalue = cgfloat(animcount) self.amplitude = amplitude self.bouncingtimes = bouncingtimes } var animatabledata: cgfloat { get { animvalue } set { animvalue = newvalue } } func body(content: content) -> some view { let t = animvalue - cgfloat(animcount) let offset: cgfloat = -abs(pow(cgfloat(m_e), -t) * sin(t * .pi * cgfloat(bouncingtimes)) * amplitude) return content.offset(y: offset) } } extension view { func bounce(animcount: int, amplitude: cgfloat = 10, bouncingtimes: int = 3) -> some view { self.modifier(bounce(animcount: animcount, amplitude: amplitude, bouncingtimes: bouncingtimes)) } }
这里我们还增加了 bouncingtimes
作为弹跳次数的参数,振幅也作为参数开放给用户;
由于阻尼正弦波是逐步衰减的,为了每次点击的弹跳都一样,所以得用 animvalue - cgfloat(animcount)
作为阻尼正弦波函数的参数。
测试代码修改如下:
struct bouncingview: view { @state var taps = 0 var body: some view { button(action: { withanimation(animation.linear(duration: 1)) { taps += 1 } }, label: { roundedrectangle(cornerradius: 15) .bounce(animcount: taps) }) .frame(width: 100, height: 100) } }
实际效果如下:
到此这篇关于swiftui 中创建反弹动画的实现的文章就介绍到这了,更多相关swiftui 反弹动画内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!