let animation = CAKeyframeAnimation(keyPath: "transform.scale") animation.timingFunction = CAMediaTimingFunction(name: .easeInEaseOut) animation.duration = 1 animation.values = [1.0, 1.5, 1.0, 1.5, 1] animation.keyTimes = [0, 0.2, 0.4, 0.7, 1] animation.repeatCount = .infinity Your_Button_Name.layer.add(animation, forKey: "heartbeat")
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter