All Projects → takuoka → Tkswarmalert

takuoka / Tkswarmalert

Licence: mit
Animated alert library like Swarm app.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Tkswarmalert

animatePaper.js
An animation library for paper.js.
Stars: ✭ 33 (-94.27%)
Mutual labels:  animation-library
Sequent
A simple continuous animation library for Android UI.
Stars: ✭ 263 (-54.34%)
Mutual labels:  animation-library
Xamanimation
Xamarin Forms Animation Library
Stars: ✭ 389 (-32.47%)
Mutual labels:  animation-library
scrollxp
Alpine.js-esque library for scrolling animations on websites
Stars: ✭ 50 (-91.32%)
Mutual labels:  animation-library
lexicon-mono-seq
DOM Text Based Multiple Sequence Alignment Library
Stars: ✭ 15 (-97.4%)
Mutual labels:  animation-library
React Flip Toolkit
A lightweight magic-move library for configurable layout transitions
Stars: ✭ 3,319 (+476.22%)
Mutual labels:  animation-library
Kotlin-Animation-DSL
simplify Android animation code by redefining API, use just one third of code to create animation compare to origin Android API
Stars: ✭ 45 (-92.19%)
Mutual labels:  animation-library
Rxanimation
Simple way to animate your views on Android with Rx 🚀
Stars: ✭ 521 (-9.55%)
Mutual labels:  animation-library
animX
An animation library for Love2D with unique features
Stars: ✭ 17 (-97.05%)
Mutual labels:  animation-library
Theglowingloader
TheGlowingLoader is the highly configurable library to indicate progress and is natively created for Android Platform. It is an implementation of a design composed by Shashank Sahay.
Stars: ✭ 379 (-34.2%)
Mutual labels:  animation-library
animol
A minimal, super lightweight (3KB minimized and gzipped), zero dependency, JavaScript animation library.
Stars: ✭ 24 (-95.83%)
Mutual labels:  animation-library
vue3-spring
A spring-physics based animation library, and more
Stars: ✭ 30 (-94.79%)
Mutual labels:  animation-library
Wickedcss
A library for CSS3 animations. The animations are more vibrant than most simple animations.
Stars: ✭ 285 (-50.52%)
Mutual labels:  animation-library
smoothr
A custom React router that leverages the Web Animations API and CSS animations.
Stars: ✭ 28 (-95.14%)
Mutual labels:  animation-library
Tuesday
A quirky CSS Animation Library by Shakr
Stars: ✭ 446 (-22.57%)
Mutual labels:  animation-library
web-animation-club
CSS controlled animations with transitionEnd, onTransitionEnd, animationend, onAnimationEnd events and frame throwing. Tiny javascript library with cross-browser methods to handle css animation/transition callbacks and event loop frame throwing. 📚🖥️📱
Stars: ✭ 52 (-90.97%)
Mutual labels:  animation-library
Gemini
Gemini is rich scroll based animation framework for iOS, written in Swift.
Stars: ✭ 2,965 (+414.76%)
Mutual labels:  animation-library
Anim
Swift animation library for iOS, tvOS and macOS.
Stars: ✭ 520 (-9.72%)
Mutual labels:  animation-library
React Spring
✌️ A spring physics based React animation library
Stars: ✭ 21,938 (+3708.68%)
Mutual labels:  animation-library
Spruce Android
Spruce Animation Library
Stars: ✭ 3,663 (+535.94%)
Mutual labels:  animation-library

TKSwarmAlert

Carthage compatible Platform Language License CocoaPods

Animation Tool for Alert like Swarm app.

ScreenShot

Demo GIF Animation

Installation

CocoaPods

You can use CocoaPods to install TKSwarmAlert by adding it to your Podfile:

platform :ios, '8.0'
use_frameworks!
pod 'TKSwarmAlert'

To get the full benefits import TKSwarmAlert wherever you import UIKit

import UIKit
import TKSwarmAlert

Carthage

Create a Cartfile that lists the framework and run carthage bootstrap. Follow the instructions to add $(SRCROOT)/Carthage/Build/iOS/YourLibrary.framework to an iOS project.

github "entotsu/TKSwarmAlert"

Manually

  1. Download and drop YourLibrary.swift in your project.
  2. Congratulations!

Usage

import TKSwarmAlert

Show

let alert = TKSwarmAlert()
alert.show(type: .BrightBlur, views: [yourViews1, yourViews2, yourViews3])

Static Views

You can also add non-animated views to alert view. Please use this method before "show".

alert.addSubStaticView(yourStaticView)

Demo GIF Animation

Event Handler

alert.didDissmissAllViews = {
    println("didDissmissAllViews")
}

TKSWBackgroundType

.TransparentBlack

Demo GIF Animation

.Blur

Demo GIF Animation

.BrightBlur

Demo GIF Animation

Kind of Blur

  • branch master -> UIVisualEffectView
  • branch DynamicBlur -> DynamicBlurView (beautiful but unstable)

Popup view is just a UIView.

So, you can add original view.

Demo GIF Animation

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].