12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // Created by Tom Baranes on 21/08/16.
- // Copyright © 2016 IBAnimatable. All rights reserved.
- //
- import UIKit
- public class ActivityIndicatorAnimationLineScalePulseOut: ActivityIndicatorAnimating {
- // MARK: Properties
- fileprivate let duration: CFTimeInterval = 1
- // MARK: ActivityIndicatorAnimating
- public func configureAnimation(in layer: CALayer, size: CGSize, color: UIColor) {
- let lineSize = size.width / 9
- let x = (layer.bounds.size.width - size.width) / 2
- let y = (layer.bounds.size.height - size.height) / 2
- let beginTime = layer.currentMediaTime
- let beginTimes = [0.4, 0.2, 0, 0.2, 0.4]
- let animation = defaultAnimation
- // Draw lines
- for i in 0 ..< 5 {
- 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]
- line.frame = frame
- line.add(animation, forKey: "animation")
- layer.addSublayer(line)
- }
- }
- }
- // MARK: - Setup
- private extension ActivityIndicatorAnimationLineScalePulseOut {
- var defaultAnimation: CAKeyframeAnimation {
- let timingFunction = CAMediaTimingFunction(controlPoints: 0.85, 0.25, 0.37, 0.85)
- let animation = CAKeyframeAnimation(keyPath: .scaleY)
- animation.keyTimes = [0, 0.5, 1]
- animation.timingFunctions = [timingFunction, timingFunction]
- animation.values = [1, 0.4, 1]
- animation.duration = duration
- animation.repeatCount = .infinity
- animation.isRemovedOnCompletion = false
- return animation
- }
- }
|