• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ARAnimation: ARAnimation is an Core Animation library to make you animations eas ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

ARAnimation

开源软件地址:

https://gitee.com/AugustLua/ARAnimation

开源软件介绍:

ARAnimation is an Core Animation library to make you animations easily.

Features

  • Layer animations
  • Layer Spring Animations
  • Custom TimingFunction(easing funtion)
  • Official style block Animations

Install

Cocoapods

Manually

  • just drag demo source ducument to your project

Usage

Example1

[UIView AR_animationWithDuration:2.0                          animations:^{                              self.redView.layer.rotation = M_PI*10;                              self.redView.layer.cornerRadius = 50;                          }];

Example2 (Multistep animations block Nested)


 void(^animation4)(void) = ^{        [self.view setNeedsLayout];        [UIView AR_animationWithDuration:0.5 delay:0.0 easing:kAREasingCurveBounceOut animations:^{            [self.view layoutIfNeeded];        } completion:^{            NSLog(@"all animations completion");        }];    };        void(^animation3)(void) = ^{        [UIView AR_springAnimationWithDuration:1 animations:^{            self.redView.layer.scale = 2;            self.yellowView.layer.scale = 1;            self.redView.layer.position = CGPointMake(CGRectGetMidX(self.view.bounds), 250);            self.yellowView.layer.position = CGPointMake(CGRectGetMidX(self.view.bounds), 250);        } completion:animation4];    };        void(^animation2)(void) = ^{        [UIView AR_springAnimationWithDuration:1.5 animations:^{            self.redView.layer.cornerRadius = CGRectGetMidX(self.redView.bounds);            self.yellowView.layer.cornerRadius = CGRectGetMidX(self.yellowView.bounds);        } completion:animation3];    };        void(^animation1)(void) = ^{        [UIView AR_animationWithDuration:0.5 animations:^{            self.redView.layer.position = CGPointMake(CGRectGetMidX(self.view.bounds), 150);            self.yellowView.layer.position = CGPointMake(CGRectGetMidX(self.view.bounds), 150);            self.redView.layer.scaleX = 1.3;            self.yellowView.layer.scaleY = 1.3;        } completion:animation2];    };            [UIView AR_animationWithDuration:2 animations:^{        self.redView.backgroundColor = [self randomColor];        self.yellowView.backgroundColor = [self randomColor];        self.yellowView.alpha = 1;                self.redView.layer.rotation = M_PI*4;        self.yellowView.layer.rotation = -M_PI*4;    } completion:animation1];

Official block style

####Basic

+ (void)AR_animationWithDuration:(NSTimeInterval)duration                      animations:(void (^)(void))animations;+ (void)AR_animationWithDuration:(NSTimeInterval)duration                      animations:(void (^)(void))animations                      completion:(void (^)(void))completion;+ (void)AR_animationWithDuration:(NSTimeInterval)duration                      animations:(void (^)(void))animations                      completion:(void (^)(void))completion;+ (void)AR_animationWithDuration:(NSTimeInterval)duration                           delay:(CFTimeInterval)delay                      animations:(void (^)(void))animations                      completion:(void (^)(void))completion;+ (void)AR_animationWithDuration:(NSTimeInterval)duration                           delay:(CFTimeInterval)delay                          easing:(AREasingCurve)easing                      animations:(void (^)(void))animations                      completion:(void (^)(void))completion;+ (void)AR_animationWithDuration:(NSTimeInterval)duration                           delay:(CFTimeInterval)delay                     repeatCount:(NSUInteger)repeatCount                    autoreverses:(BOOL)autoreverses                          easing:(AREasingCurve)easing                      animations:(void (^)(void))animations                      completion:(void (^)(void))completion;

Spring

+ (void)AR_springAnimationWithDuration:(NSTimeInterval)duration                            animations:(void (^)(void))animations;+ (void)AR_springAnimationWithDuration:(NSTimeInterval)duration                            animations:(void (^)(void))animations                            completion:(void (^)(void))completion;+ (void)AR_springAnimationWithDuration:(NSTimeInterval)duration                                 delay:(CFTimeInterval)delay                            animations:(void (^)(void))animations                            completion:(void (^)(void))completion;+ (void)AR_springAnimationWithDuration:(NSTimeInterval)duration                                 delay:(CFTimeInterval)delay                                  mass:(CGFloat)mass                               damping:(CGFloat)damping                             stiffness:(CGFloat)stiffness                       initialVelocity:(CGFloat)initialVelocity                            animations:(void (^)(void))animations                            completion:(void (^)(void))completion;+ (void)AR_springAnimationWithDuration:(NSTimeInterval)duration                                 delay:(CFTimeInterval)delay                           repeatCount:(NSUInteger)repeatCount                          autoreverses:(BOOL)autoreverses                                  mass:(CGFloat)mass                               damping:(CGFloat)damping                             stiffness:(CGFloat)stiffness                       initialVelocity:(CGFloat)initialVelocity                            animations:(void (^)(void))animations                            completion:(void (^)(void))completion;

Support Layer animatable propertys

  • kARLayerPosition
  • kARLayerPositionX
  • kARLayerPositionY
  • kARLayerCornerRadius
  • kARLayerZPositoin
  • kARLayerBorderWidth
  • kARLayerScaleX
  • kARLayerScaleY
  • kARLayerScale
  • kARLayerBounds
  • kARLayerBackgroundColor
  • kARLayerOpacity
  • kARLayerRotationX
  • kARLayerRotationY
  • kARLayerRotation
  • kARLayerAnchorPoint
  • kARShapeLayerStrokeEnd
  • kARShapeLayerStrokeStart

Reference

Next

  • More animatable layer's propertys
  • Custom animaton ??
  • Chainable animations ??

Supplement

Licence

The MIT License (MIT)

Copyright (c) 2015 August

Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
DuplexSeekBarDemo: 可以双向滑动的SeekBar发布时间:2022-03-24
下一篇:
FastApp: a scaffold for ios and os x develop发布时间:2022-03-24
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap