首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >SwiftUI按钮的Aura动画

SwiftUI按钮的Aura动画
EN

Stack Overflow用户
提问于 2021-05-09 19:48:11
回答 1查看 49关注 0票数 0

如何制作下面的动画?当触摸按钮时,光环就会出现,整个盒子就会收缩,就像手指的重量一样。

代码语言:javascript
复制
struct ContentView: View {
    
    var body: some View {
        Button(action: {
            
        }, label: {
                Image(systemName: "camera")
                        .font(.title)
                        .opacity(1)
        })
        .padding(.horizontal, 20)
        .frame(height: 80)
        .background(Color.yellow.opacity(0.2).clipShape(Circle()))
    }
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2021-05-10 02:52:48

这是一个使用ZStack和scaleEffect的解决方案。按下时缩小图标,并在完成时恢复。相反,对于圆,按下时缩放,完成时恢复。

代码语言:javascript
复制
struct AuraButtonView: View {
    // automatically resets gesture when complete
    @GestureState private var tapped = false
    // max size
    @State var fullSize : CGFloat = 72
    // size when button pressed
    @State var scale : CGFloat = 0.8

    // camera icon, shrink when pressed, restore on complete
    var icon : some View {
        Image(systemName: "camera")
            .font(.title)
            .scaleEffect(tapped ? CGSize(width: scale, height: scale) : CGSize(width: 1, height: 1))
            .animation(.easeInOut)
    }
    
    // yellow circle, grow when pressed, restore on complete
    var background : some View {
        Circle()
            .foregroundColor(tapped ? Color.yellow.opacity(0.2) : Color.clear)
            .frame(width: tapped ? fullSize : 0, height: tapped ? fullSize : 0, alignment: Alignment(horizontal: .center, vertical: .center))
            .animation(.easeInOut)
    }
    
    // stack the icon on the circle and use the zstack as the gesture
    var body: some View {
        ZStack(alignment: Alignment(horizontal: .center, vertical: .center), content: {
            background
            icon
        })
        .frame(width: fullSize, height: fullSize)
        .gesture(DragGesture(minimumDistance: 0)
                    .updating($tapped) { (_, tapped, _) in
                        tapped = true
                    })
    }
}

struct AuraButtonView_Previews: PreviewProvider {
    static var previews: some View {
        AuraButtonView()
    }
}

Credit to @nils for the Gesture magic

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/67457336

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档