123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // Created by Tom Baranes on 21/08/16.
- // Copyright © 2016 IBAnimatable. All rights reserved.
- //
- import UIKit
- public class ActivityIndicatorAnimationBallPulseSync: ActivityIndicatorAnimating {
- // MARK: Properties
- fileprivate let duration: CFTimeInterval = 0.6
- fileprivate var size: CGSize = .zero
- fileprivate var circleSize: CGFloat = 0
- // MARK: ActivityIndicatorAnimating
- public func configureAnimation(in layer: CALayer, size: CGSize, color: UIColor) {
- let circleSpacing: CGFloat = 2
- self.size = size
- circleSize = (size.width - circleSpacing * 2) / 3
- let x = (layer.bounds.size.width - size.width) / 2
- let y = (layer.bounds.size.height - circleSize) / 2
- let beginTime = layer.currentMediaTime
- let beginTimes: [CFTimeInterval] = [0.07, 0.14, 0.21]
- let animation = defaultAnimation
- // Draw circles
- for i in 0 ..< 3 {
- let circle = ActivityIndicatorShape.circle.makeLayer(size: CGSize(width: circleSize, height: circleSize), color: color)
- let frame = CGRect(x: x + circleSize * CGFloat(i) + circleSpacing * CGFloat(i),
- y: y,
- width: circleSize,
- height: circleSize)
- animation.beginTime = beginTime + beginTimes[i]
- circle.frame = frame
- circle.add(animation, forKey: "animation")
- layer.addSublayer(circle)
- }
- }
- }
- // MARK: - Setup
- private extension ActivityIndicatorAnimationBallPulseSync {
- var defaultAnimation: CAKeyframeAnimation {
- let deltaY = (size.height / 2 - circleSize / 2) / 2
- let timingFunction: TimingFunctionType = .easeInOut
- let animation = CAKeyframeAnimation(keyPath: .translationY)
- animation.keyTimes = [0, 0.33, 0.66, 1]
- animation.timingFunctionsType = [timingFunction, timingFunction, timingFunction]
- animation.values = [0, deltaY, -deltaY, 0]
- animation.duration = duration
- animation.repeatCount = .infinity
- animation.isRemovedOnCompletion = false
- return animation
- }
- }
|