如何设置CAGradientLayer颜色点的动画?

时间:2018-08-20 16:03:54

标签: swift calayer cabasicanimation caanimation cagradientlayer

在为CAGradientLayer角度设置动画时遇到问题。

CAGradientLayer中的角度通过起点和终点属性表示。

我想以圆形方式为渐变设置动画。

当我将其设置在animationGroup中时,它将无法正常工作。没有动画发生。 当我更改

中的属性时
DispatchQueue.main.asyncAfter(deadline: now() + 1.0) {
    // change properties here
}

有效。但是正在发生非常快速的动画。这还不够好。

在互联网上,唯一存在的是位置和颜色变化,但角度没有变化。

下面您可以找到一个要玩的游乐场项目

//: A UIKit based Playground for presenting user interface

import UIKit
import PlaygroundSupport

class MyViewController : UIViewController {

    // Gradient layer specification
    lazy var gradientLayer: CAGradientLayer = {
        let gradientLayer = CAGradientLayer()
        gradientLayer.colors = [UIColor.white.withAlphaComponent(0.5).cgColor, UIColor.orange.withAlphaComponent(0.5).cgColor, UIColor.orange.cgColor]
        gradientLayer.locations = [0, 0.27, 1]
        gradientLayer.frame = view.bounds
        gradientLayer.startPoint = CGPoint(x: 0.0, y: 0.0)
        gradientLayer.endPoint = CGPoint(x: 1.0, y: 1.0)
        return gradientLayer
    }()

    func animationMapFunction(points: [(CGPoint, CGPoint)], keyPath: String) -> [CABasicAnimation] {
        return points.enumerated().map { (arg) -> CABasicAnimation in
            let (offset, element) = arg
            let gradientStartPointAnimation = CABasicAnimation(keyPath: keyPath)

            gradientStartPointAnimation.fromValue = element.0
            gradientStartPointAnimation.toValue = element.1
            gradientStartPointAnimation.beginTime = CACurrentMediaTime() + Double(offset)

            return gradientStartPointAnimation
        }
    }

    lazy var gradientAnimation: CAAnimation = {
        let startPointAnimationPoints = [(CGPoint(x: 0.0, y: 0.0), CGPoint(x: 1.0, y:0.0)),
                                         (CGPoint(x: 1.0, y:0.0), CGPoint(x: 1.0, y:1.0)),
                                         (CGPoint(x: 1.0, y:1.0), CGPoint(x: 0.0, y:1.0)),
                                         (CGPoint(x: 0.0, y:1.0), CGPoint(x: 0.0, y:0.0))]

        let endPointAnimatiomPoints = [(CGPoint(x: 1.0, y:1.0), CGPoint(x: 0.0, y:1.0)),
                                       (CGPoint(x: 0.0, y:1.0), CGPoint(x: 0.0, y:0.0)),
                                       (CGPoint(x: 0.0, y: 0.0), CGPoint(x: 1.0, y:0.0)),
                                       (CGPoint(x: 1.0, y:0.0), CGPoint(x: 1.0, y:1.0))]

        let startPointAnimations = animationMapFunction(points: startPointAnimationPoints, keyPath: "startPoint")
        let endPointAnimations = animationMapFunction(points: startPointAnimationPoints, keyPath: "endPoint")

        let animationGroup = CAAnimationGroup()
        animationGroup.duration = 5.0
        animationGroup.repeatCount = Float.infinity
        animationGroup.animations = startPointAnimations + endPointAnimations

        return animationGroup
    }()

    override func loadView() {
        let view = UIView(frame: UIScreen.main.bounds)
        self.view = view

        view.layer.addSublayer(gradientLayer)
    }

    func animate() {
        view.layer.removeAllAnimations()
        gradientLayer.add(gradientAnimation, forKey: nil)
    }
}
// Present the view controller in the Live View window
let vc = MyViewController()
PlaygroundPage.current.liveView = vc

vc.animate()

1 个答案:

答案 0 :(得分:0)

所以我做的是一个计时器,触发了起点和终点的改变。

我从0旋转到360度,同时以给定常数(在我的情况下为6)增加角度

我创建了一个函数映射:angle→(startPoint,endPoint)

func animate() {
    stopAnimation()

    timer = Timer.scheduledTimer(withTimeInterval: 0.05, repeats: true, block: { timer in
        self.angle += 6.0
        self.angle.formTruncatingRemainder(dividingBy: 360)

        CATransaction.begin()
        // disable implicit animation
        CATransaction.setDisableActions(true)

        let pos = points(from: self.angle)

        self.gradientLayer.startPoint = pos.0
        self.gradientLayer.endPoint = pos.1

        CATransaction.commit()
    })
}

func stopAnimation() {
    timer?.invalidate()
}

这是实用程序功能

extension CGPoint {
    var inverse: CGPoint {
        return CGPoint(x: 1 - x, y: 1 - y)
    }
}

fileprivate func points(from angle: Double) -> (CGPoint, CGPoint) {
    let start: CGPoint

    switch angle {
    case let x where 0 <= x && x < 90:
        start = CGPoint(x: x / 180, y: 0.5 - x / 180)
    case let x where 90 <= x && x < 180:
        start = CGPoint(x: x / 180, y: x / 180 - 0.5)
    case let x where 180 <= x && x < 270:
        start = CGPoint(x: 2.0 - x / 180, y: 0.5 + (x - 180) / 180)
    case let x where 270 <= x && x < 360:
        start = CGPoint(x: 2.0 - x / 180, y: 0.5 + (360 - x) / 180)
    default:
        start = CGPoint.zero
    }

    return (start, start.inverse)
}
相关问题