Rippl 0.1.0

Rippl 0.1.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jan 2018
SwiftSwift Version 4.0
SPMSupports SPM

Maintained by Jean-Étienne.




Rippl 0.1.0

UI element showing a growing circle, reminiscent of a ripple in a pond.

A Rippl is a simple UIView sublcass which draws an ellipse (in most cases a circle) within its frame and has 2 built-in animations. You can call an "impact ripple" animation to create an additional growing ellipse behind the original one, or you can call a "gain" animation that grows the original view according to the value of the gain.

Impact Ripple animation Gain animation

Features

Rippl is IBDesignable and IBInspectable, making it very easy to use in Interface Builder.

Usage

Use a UIView of subclass Rippl and call any of the two provided methods:

class ViewController: UIViewController {

    @IBOutlet var ripplView: Rippl!

    @IBAction func animateImpactButtonDidTouchUpInside(_ sender: AnyObject, forEvent event: UIEvent) {
        ripplView.animateImpact(strength: 2.5, duration: 1.5)
    }

    @IBAction func animateGainButtonDidTouchUpInside(_ sender: AnyObject, forEvent event: UIEvent) {
        ripplView.animateGain(value: 3)
    }

}

Installation

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate Rippl into your project manually.

Sample project

Clone this repo and run the project, it contains a sound recorder to help you visualise the "gain" animation. You can also trigger the "impact ripple" animation with a button.

The mic image in the sample project is by Michal Beno, from the Noun Project.