All Projects → onmyway133 → Cheers

onmyway133 / Cheers

Licence: other
🎊 Fancy confetti effects in Swift

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Cheers

EasyConfetti
🎊 Fancy confetti effects in Swift
Stars: ✭ 557 (+5.69%)
Mutual labels:  particle, effect
ParticleLib
一个用于Minecraft Particle的类库
Stars: ✭ 19 (-96.39%)
Mutual labels:  particle, effect
FunCrop
Video Split Effect: a lots of transition effect in a video.
Stars: ✭ 42 (-92.03%)
Mutual labels:  effect
Flutter effects
flutter animation effects | custom widget | custom renderobject
Stars: ✭ 421 (-20.11%)
Mutual labels:  effect
redux-execute
Another way with thunk in redux
Stars: ✭ 18 (-96.58%)
Mutual labels:  effect
ParticleLib
Multiversion spigot library supporting all particles and their data (1.8-1.18.2)
Stars: ✭ 156 (-70.4%)
Mutual labels:  particle
MeeInk
Material Design click effect
Stars: ✭ 33 (-93.74%)
Mutual labels:  effect
LegendaryExplorer
Editor toolset for Mass Effect Trilogy and Mass Effect Legendary Edition
Stars: ✭ 85 (-83.87%)
Mutual labels:  effect
Unity Frosted Glass
❄️ Test of a frosted glass material in Unity.
Stars: ✭ 506 (-3.98%)
Mutual labels:  effect
VideoSplice
Video splice effects.
Stars: ✭ 56 (-89.37%)
Mutual labels:  effect
Timelineparticlecontrol
An example of controlling particle system from timeline.
Stars: ✭ 348 (-33.97%)
Mutual labels:  particle
po-util
Classic Edition of po-util: The Ultimate Local Particle Experience for Linux and macOS
Stars: ✭ 51 (-90.32%)
Mutual labels:  particle
SparkJson
JSON library Ported from @bblanchon for Spark Core
Stars: ✭ 36 (-93.17%)
Mutual labels:  particle
Uieffect
UIEffect is an effect component for uGUI element in Unity. Let's decorate your UI with effects!
Stars: ✭ 3,449 (+554.46%)
Mutual labels:  effect
Gort
Command Line Interface (CLI) for RobotOps
Stars: ✭ 425 (-19.35%)
Mutual labels:  particle
skyline
Some canvas experiments... like drawing a procedurally generated skyline. Also featuring fun explosions :D
Stars: ✭ 24 (-95.45%)
Mutual labels:  particle
tdme2
TDME2 - ThreeDeeMiniEngine2 is a lightweight, multi-platform 3D engine including tools suited for 3D game/application development using C++
Stars: ✭ 86 (-83.68%)
Mutual labels:  particle
smart-bathroom
Smart(kinda) Bathroom
Stars: ✭ 20 (-96.2%)
Mutual labels:  particle
Tvwidget
tv常用效果控件,包括焦点、边框处理等。
Stars: ✭ 519 (-1.52%)
Mutual labels:  effect
Videobeautify
With this APP, you can do all kinds of professional optimising and beautifying to your videos
Stars: ✭ 450 (-14.61%)
Mutual labels:  effect

Cheers

Buy Me A Coffee

❤️ Support my apps ❤️

❤️❤️😇😍🤘❤️❤️

Version Carthage Compatible Accio supported License Platform Swift

Usage

Basic

// Create the view
let cheerView = CheerView()
view.addSubview(cheerView)

// Configure
cheerView.config.particle = .confetti(allowedShapes: Particle.ConfettiShape.all)

// Start
cheerView.start()

// Stop
cheerView.stop()

Configuration

Configuration will be applied at the next start

// Use predefined confetti
cheerView.config.particle = .confetti(allowedShapes: Particle.ConfettiShape.all)

// Use texts
let string = NSAttributedString(string: "❤️", attributes: [
  NSFontAttributeName: UIFont.systemFont(ofSize: 15)
])
cheerView.config.particle = .text([string])

// Use images
let image = UIImage(named: "star")
cheerView.config.particle = .image([image])

// Change colors
cheerView.config.colors = [UIColor.red, UIColor.green]

// Customize cells
cheerView.config.customize = { cells in

}

Installation

Cheers is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'Cheers'

Cheers is also available through Carthage. To install just write into your Cartfile:

github "hyperoslo/Cheers"

Cheers is also available through Accio. To install just write into your Package.swift:

.package(url: "https://github.com/onmyway133/Cheers.git", .upToNextMajor(from: "2.3.0")),

Then link Cheers in your App target like so:

.target(
    name: "App",
    dependencies: [
        "Cheers",
    ]
),

Cheers can also be installed manually. Just download and drop Sources folders in your project.

Author

Credit

Contributing

We would love you to contribute to Cheers, check the CONTRIBUTING file for more info.

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].