Popularity
4.8
Declining
Activity
0.0
Stable
403
6
36

Programming language: Swift
License: MIT License
Tags: Animation     UI    
Latest version: v0.2.0

WaterDrops alternatives and similar libraries

Based on the "Animation" category.
Alternatively, view WaterDrops alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WaterDrops or a related project?

Add another 'Animation' Library

README

WaterDrops

Simple water drops animation ๐Ÿ’ง

Example

override func viewDidLoad() {
     super.viewDidLoad()

         self.view.backgroundColor = UIColor.white

         // custom configuration
         let waterDropsView = WaterDropsView(frame: self.view.frame,
                                           direction: .up,
                                           dropNum: 10,
                                           color: UIColor.red.withAlphaComponent(0.7),
                                           minDropSize: 10,
                                           maxDropSize: 20,
                                           minLength: 50,
                                           maxLength: 100,
                                           minDuration: 4,
                                           maxDuration: 8)

         // add animation 
         waterDropsView.addAnimation()
         self.view.addSubview(waterDropsView)
}

Installation

Cocoapods

pod "WaterDrops"

Author

LeFal, [email protected]

License

'WaterDrops' is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the WaterDrops README section above are relevant to that project's source code only.