Swift核心动画: Swift Core Animation

2019-08-25  本文已影响0人  小熊翻译App

完成动画

GitHub地址

效果图:


SucceedAnimation.2019-08-25 11_58_40.gif

核心代码:

控制器文件:
import UIKit

class SWSucceedAnimationVC: UIViewController {
    
    let kProgressBarHeight: CGFloat = 38
    let kProgressBarWidth: CGFloat = 150

    override func viewDidLoad() {
        super.viewDidLoad()
        self.view.backgroundColor = .white
        let frame = CGRect(x: (UIScreen.main.bounds.width - kProgressBarWidth) / 2, y: (UIScreen.main.bounds.height - kProgressBarHeight) / 2, width: kProgressBarWidth, height: kProgressBarHeight)
        let progressBar = SWProgressBarView.init(frame: frame)
        self.view.addSubview(progressBar)
        progressBar.backgroundColor = SWColor.indigo
        progressBar.layer.cornerRadius = progressBar.bounds.height / 2
    }
}
动画控件视图文件:

import UIKit

class SWProgressBarView: UIView {
    var originframe: CGRect = CGRect(x: 0, y: 0, width: 150, height: 30)
    var animating: Bool = false
    let progressBarHeight: CGFloat = 38
    let progressBarWidth: CGFloat = 150
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        setupUI()
    }
    
    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }
    
    func setupUI() {
        let tapped = UITapGestureRecognizer.init(target: self, action: #selector(tapped(_:)))
        self.addGestureRecognizer(tapped)
    }
    
    @objc func tapped(_ tapped: UITapGestureRecognizer) {
        originframe = self.frame
        if animating == true {
            return
        }
        if let sublayers = self.layer.sublayers {
            for subLayer in sublayers {
                subLayer.removeFromSuperlayer()
            }
        }
        self.backgroundColor = UIColor.init(red: 0.0, green: 122.0/255.0, blue: 255.0/255.0, alpha: 1.0)
        animating = true
        self.layer.cornerRadius = self.progressBarHeight / 2
        let radiusAnimation = CABasicAnimation.init(keyPath: "cornerRadius")
        radiusAnimation.duration = 0.2
        radiusAnimation.timingFunction = CAMediaTimingFunction.init(name: .easeOut)
        radiusAnimation.fromValue = originframe.size.height / 2
        radiusAnimation.delegate = self
        self.layer.add(radiusAnimation, forKey: "cornerRadiusShrinkAnim")
    }
    
    func progressBarAnimation() {
        let progressLayer = CAShapeLayer.init()
        let path = UIBezierPath.init()
        path.move(to: CGPoint(x: self.progressBarHeight / 2, y: self.progressBarHeight / 2))
        path.addLine(to: CGPoint(x: self.bounds.width - progressBarHeight / 2, y: self.bounds.height / 2))
        progressLayer.path = path.cgPath
        progressLayer.strokeColor = UIColor.white.cgColor
        progressLayer.lineWidth = progressBarHeight - 6
        progressLayer.lineCap = .round
        self.layer.addSublayer(progressLayer)
        let pathAnimation = CABasicAnimation.init(keyPath: "strokeEnd")
        pathAnimation.duration = 2.0
        pathAnimation.fromValue = 0.0
        pathAnimation.toValue = 1.0
        pathAnimation.delegate = self
        pathAnimation.setValue("progressBarAnimation", forKey: "animationName")
        progressLayer.add(pathAnimation, forKey: nil)
    }
}

extension SWProgressBarView: CAAnimationDelegate {
    func animationDidStart(_ anim: CAAnimation) {
        print("started")
        if anim == self.layer.animation(forKey: "cornerRadiusShrinkAnim") {
            UIView.animate(withDuration: 0.6, delay: 0.0, options: .curveEaseOut, animations: {
                self.bounds = CGRect(x: 0, y: 0, width: self.progressBarWidth, height: self.progressBarHeight)
            }) { (finished) in
                self.layer.removeAllAnimations()
                /// 开启下一组动画
                self.progressBarAnimation()
            }
        }
        if anim == self.layer.animation(forKey: "cornerRadiusExpandAnim") {
            UIView.animate(withDuration: 0.6, delay: 0.0, usingSpringWithDamping: 0.6, initialSpringVelocity: 0.0, options: .curveEaseOut, animations: {
                self.bounds = CGRect(x: 0, y: 0, width: self.originframe.size.width/2, height: self.originframe.size.width/2)
                self.backgroundColor = UIColor.init(red: 0.18039, green: 0.8, blue: 0.44313, alpha: 1.0)
            }) { (finished) in
                self.layer.removeAllAnimations()
                self.checkAnimation()
                self.animating = false
            }
        }
    }
    
    func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
        print("stopped")
        guard let sublayers = self.layer.sublayers, let animValue = anim.value(forKey: "animationName") as? String else {
            return
        }
        if animValue == "progressBarAnimation" {
            UIView.animate(withDuration: 0.3, animations: {
                for subLayer in sublayers {
                    subLayer.opacity = 0.0
                }
            }) { (finished) in
                for subLayer in sublayers {
                    subLayer.removeAllAnimations()
                }
                self.layer.cornerRadius = (self.originframe.size.width/2) / 2
                let radiusAnimation = CABasicAnimation.init(keyPath: "cornerRadius")
                radiusAnimation.duration = 0.2
                radiusAnimation.timingFunction = CAMediaTimingFunction.init(name: .easeOut)
                radiusAnimation.fromValue = self.progressBarHeight / 2
                radiusAnimation.delegate = self
                self.layer.add(radiusAnimation, forKey: "cornerRadiusExpandAnim")
            }
        }
    }
    
    func checkAnimation() {
        let checkLayer = CAShapeLayer.init()
        let path = UIBezierPath.init()
        let bounds = self.bounds
        let dx = bounds.size.width*(1-1/CGFloat(sqrt(Float(2.0))))/2
        let dy = bounds.size.width*(1-1/CGFloat(sqrt(Float(2.0))))/2
        /// 注意这个值不要为零或者Nan
        let rectInCircle = bounds.insetBy(dx: dx, dy: dy)
        print("rectInCircle === \(rectInCircle)")
        path.move(to: CGPoint(x: rectInCircle.origin.x + rectInCircle.size.width/9, y: rectInCircle.origin.y + rectInCircle.size.height*2/3))
        path.addLine(to: CGPoint(x: rectInCircle.origin.x + rectInCircle.size.width/3, y: rectInCircle.origin.y + rectInCircle.size.height*9/10))
        path.addLine(to: CGPoint(x: rectInCircle.origin.x + rectInCircle.size.width*8/10, y: rectInCircle.origin.y + rectInCircle.size.height*2/10))
        checkLayer.path = path.cgPath
        checkLayer.fillColor = UIColor.clear.cgColor
        checkLayer.strokeColor = UIColor.white.cgColor
        checkLayer.lineWidth = 10.0
        checkLayer.lineCap = .round
        checkLayer.lineJoin = .round
        self.layer.addSublayer(checkLayer)
        let checkAnimation = CABasicAnimation.init(keyPath: "strokeEnd")
        checkAnimation.duration = 0.3
        checkAnimation.fromValue = 0.0
        checkAnimation.delegate = self
        checkAnimation.setValue("checkAnimation", forKey: "animationName")
        checkLayer.add(checkAnimation, forKey: nil)
    }
}

GitHub地址

上一篇下一篇

猜你喜欢

热点阅读