12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // Created by Tom Baranes on 23/08/16.
- // Copyright (c) 2016 IBAnimatable. All rights reserved.
- //
- import UIKit
- public class ActivityIndicatorAnimationLineScaleParty: ActivityIndicatorAnimating {
- // MARK: Properties
- fileprivate let timingFunction: TimingFunctionType = .default
- // MARK: ActivityIndicatorAnimating
- public func configureAnimation(in layer: CALayer, size: CGSize, color: UIColor) {
- let lineSize = size.width / 7
- let x = (layer.bounds.size.width - size.width) / 2
- let y = (layer.bounds.size.height - size.height) / 2
- let durations: [CFTimeInterval] = [1.26, 0.43, 1.01, 0.73]
- let beginTime = layer.currentMediaTime
- let beginTimes: [CFTimeInterval] = [0.77, 0.29, 0.28, 0.74]
- let animation = defaultAnimation
- // Animation
- for i in 0..<4 {
- let line = ActivityIndicatorShape.line.makeLayer(size: CGSize(width: lineSize, height: size.height), color: color)
- let frame = CGRect(x: x + lineSize * 2 * CGFloat(i), y: y, width: lineSize, height: size.height)
- animation.beginTime = beginTime + beginTimes[i]
- animation.duration = durations[i]
- line.frame = frame
- line.add(animation, forKey: "animation")
- layer.addSublayer(line)
- }
- }
- }
- // MARK: - Setup
- private extension ActivityIndicatorAnimationLineScaleParty {
- var defaultAnimation: CAKeyframeAnimation {
- let animation = CAKeyframeAnimation(keyPath: .scale)
- animation.keyTimes = [0, 0.5, 1]
- animation.timingFunctionsType = [timingFunction, timingFunction]
- animation.values = [1, 0.5, 1]
- animation.repeatCount = .infinity
- animation.isRemovedOnCompletion = false
- return animation
- }
- }
|