Popularity
5.7
Declining
Activity
0.0
Stable
607
8
42

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

Comets alternatives and similar libraries

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

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

Add another 'Animation' Library

README

Comets

☄️ Comets: Animating Particles in Swift

Swift Version License Platform Carthage compatible

[comet.gif](README/comet.gif)

animation made by kevin as part of Voicy design

implements Bennet van der Linden medium Comets: Animating Particles in Swift

Example

// Customize your comet
let width = view.bounds.width
let height = view.bounds.height
let comets = [Comet(startPoint: CGPoint(x: 100, y: 0),
                    endPoint: CGPoint(x: 0, y: 100),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: 0.4 * width, y: 0),
                    endPoint: CGPoint(x: width, y: 0.8 * width),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: 0.8 * width, y: 0),
                    endPoint: CGPoint(x: width, y: 0.2 * width),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: width, y: 0.2 * height),
                    endPoint: CGPoint(x: 0, y: 0.25 * height),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: 0, y: height - 0.8 * width),
                    endPoint: CGPoint(x: 0.6 * width, y: height),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: width - 100, y: height),
                    endPoint: CGPoint(x: width, y: height - 100),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white),
              Comet(startPoint: CGPoint(x: 0, y: 0.8 * height),
                    endPoint: CGPoint(x: width, y: 0.75 * height),
                    lineColor: UIColor.white.withAlphaComponent(0.2),
                    cometColor: UIColor.white)]

// draw line track and animate
for comet in comets {
    view.layer.addSublayer(comet.drawLine())
    view.layer.addSublayer(comet.animate())
}

[comet.gif](README/Comets.gif)

Requirements

Comets is written in Xcode 10, Swift 5.0, iOS 9.0 Required

📲 Installation

Comets is available through Cocoapods or Carthage.

Cocoapods

pod "Comets"

Carthage

github "cruisediary/Comets" ~> 0.3.1

❤️ Contribution

Pull requests are always welcomed 🏄🏼

👨‍💻 Author

cruz, [email protected]

🛡 License

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


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