CocoaPods trunk is moving to be read-only. Read more on the blog, there are 9 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Mar 2016 |
Maintained by titeng jiang.
Just-add-water TTAnimations
TTAnimations is animate.css version of the ios implementation, will continue to update the new animation.
TTAnimations is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.
import TTAnimations/AnimationHelper.h
select targetView
[AnimationHelper playAnimationOn:_targetView animationType:rubberBand];
custom animation use AnimationBuilder
_animationBuilder = [[AnimationBuilder alloc] init];
[_animationBuilder setDelegate:self];
[_animationBuilder setDuration:3.0f];
[_animationBuilder setAnimationType:_animationType];
[_animationBuilder startOn:_targetLabel completeBlock:^{
NSLog(@"complete animation");
}];Finally you need to select one of the following animation:
bounceflashpulserubberBandshakeheadShakeswingtadawobblejellobounceInbounceInDownbounceInLeftbounceInRightbounceInUpbounceOutbounceOutDownbounceOutLeftbounceOutRightbounceOutUpfadeInfadeInDownfadeInDownBigfadeInLeftfadeInLeftBigfadeInRightfadeInRightBigfadeInUpfadeInUpBigfadeOutfadeOutDownfadeOutDownBigfadeOutLeftfadeOutLeftBigfadeOutRightfadeOutRightBigfadeOutUpfadeOutUpBigflipInXflipInYflipOutXflipOutYlightSpeedInlightSpeedOutrotateInrotateInDownLeftrotateInDownRightrotateInUpLeftrotateInUpRightrotateOutrotateOutDownLeftrotateOutDownRightrotateOutUpLeftrotateOutUpRighthingerollInrollOutzoomInzoomInDownzoomInLeftzoomInRightzoomInUpzoomOutzoomOutDownzoomOutLeftzoomOutRightzoomOutUpslideInDownslideInLeftslideInRightslideInUpslideOutDownslideOutLeftslideOutRightslideOutUpTTAnimation is licensed under the MIT license. (http://opensource.org/licenses/MIT)