『ios』动画篇CALayer-CAReplicatorLayer (波纹,loading,旋转)

最近在研究动画,发现通过CAReplicatorLayer 可以生成好多炫酷的动画。
首先我们来看下里面Api主要用到的一些api

@property NSInteger instanceCount; //图层复制的次数
@property BOOL preservesDepth;//如果设置为 YES,图层将保持和 CATransformLayer 相同的性质和限制
@property CFTimeInterval instanceDelay;//每个复制图层延迟出现
@property CATransform3D instanceTransform;//每个图层怎么移动
@property(nullable) CGColorRef instanceColor;//复制出图层的颜色

看完上面,其实就可以开始搞了。
第一个波纹动画


QQ20180701-111410-HD.gif
    CAShapeLayer *shapelayer = [CAShapeLayer layer];
    shapelayer.frame = CGRectMake(0, 0, 150, 150);
    shapelayer.path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 150, 150)].CGPath;
    shapelayer.fillColor = [UIColor blueColor].CGColor;
    shapelayer.opacity = 0.0;
// 动画组
    //alpha
    CABasicAnimation *alpha = [CABasicAnimation animationWithKeyPath:@"opacity"];
    alpha.fromValue = @(1.0);
    alpha.toValue = @(0.0);
    //scale
    CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform"];
    CATransform3D identidy = CATransform3DIdentity;
    scale.fromValue = [NSValue valueWithCATransform3D:CATransform3DScale(identidy, 0.0, 0.0, 0.0)];
    scale.toValue = [NSValue valueWithCATransform3D:CATransform3DScale(identidy, 1.0, 1.0, 0.0)];
    
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.animations = @[alpha,scale];
    group.repeatCount = HUGE;
    group.autoreverses = NO;
    group.duration = 4.0;
    
    [shapelayer addAnimation:group forKey:@"animationGroup"];
    
    CAReplicatorLayer *Rplayer = [CAReplicatorLayer layer];  //复制功能
    Rplayer.instanceCount = 9.0;//数量
    Rplayer.instanceDelay = 0.6;//延迟时间
    Rplayer.frame = CGRectMake(0, 0, 150, 150);
    [Rplayer addSublayer:shapelayer];
    
//    [self.view.layer addSublayer:layer];
    
    UIView * subView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 300, 300)];
    subView.center = CGPointMake(SCREEN_WIDTH/2, SCREEN_HEIGHT/2);
//    subView.backgroundColor = [UIColor redColor];
     [subView.layer addSublayer:Rplayer];
    [self.view addSubview:subView];

第二个 球的波纹动画


QQ20180701-111544-HD.gif
 CAShapeLayer *layer = [CAShapeLayer layer];
    layer.frame = CGRectMake(0, 0, 50, 50);
    layer.path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 50, 50)].CGPath;
    layer.fillColor = [UIColor blueColor].CGColor;
    
    CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform"];
    
    scale.fromValue = [NSValue valueWithCATransform3D:CATransform3DScale(CATransform3DIdentity, 1.0, 1.0, 0)];
    scale.toValue = [NSValue valueWithCATransform3D:CATransform3DScale(CATransform3DIdentity, 0.2, 0.2, 0)];
    scale.autoreverses = YES;
    scale.duration = 0.5;
    scale.repeatCount = HUGE;
    [layer addAnimation:scale forKey:@"scaleAnimation"];
    
    CAReplicatorLayer *Rlayer = [CAReplicatorLayer layer];
    Rlayer.instanceDelay = 0.2;
    Rlayer.instanceCount = 4;
    Rlayer.instanceTransform = CATransform3DMakeTranslation(50, 0, 0); //每复制一个块向右移动
    Rlayer.frame = CGRectMake(100, 100, 50, 50);
    [Rlayer addSublayer:layer];
    
    UIView * subView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 300, 300)];
    subView.center = CGPointMake(100, SCREEN_HEIGHT/2);
    //    subView.backgroundColor = [UIColor redColor];
    [subView.layer addSublayer:Rlayer];
    [self.view addSubview:subView];
    

第三个 翻转

QQ20180701-111711-HD.gif

 CAShapeLayer *layer = [CAShapeLayer layer];
    layer.frame = CGRectMake(100,100, 50, 50);
    layer.path = [UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 50, 50)].CGPath;
    layer.fillColor = [UIColor blueColor].CGColor;
    
    CABasicAnimation *roteAnimation = [CABasicAnimation animationWithKeyPath:@"transform"]; //围着x轴转
    roteAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DRotate(CATransform3DIdentity, 0, 1, 0, 0)];
    roteAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DRotate(CATransform3DIdentity, M_PI,  1, 0, 0)];
    roteAnimation.duration = 1.0;
    roteAnimation.repeatCount = HUGE;
//    roteAnimation.autoreverses = YES;
    
    [layer addAnimation:roteAnimation forKey:@"rote"];
    
    CAReplicatorLayer *Rllayer = [CAReplicatorLayer layer];
    Rllayer.instanceDelay = 1;
    Rllayer.instanceCount = 8;
    Rllayer.instanceTransform = CATransform3DTranslate(CATransform3DIdentity, 0, 60, 0);
    [Rllayer addSublayer:layer];
    
    [self.view.layer addSublayer:Rllayer];
    

第四个

QQ20180701-111825-HD.gif

    CAShapeLayer *layer = [CAShapeLayer layer];
    layer.path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 25, 25)].CGPath;
    layer.fillColor = [UIColor blueColor].CGColor;
    layer.frame = CGRectMake(0, 0, 25, 25);
    
    CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform"];
    CATransform3D identity  = CATransform3DIdentity;
    
    CATransform3D fromValue = CATransform3DRotate(identity, 0.0, 0.0, 0.0, 0.0);
    scale.fromValue = [NSValue valueWithCATransform3D:fromValue];
    
    CATransform3D toValue = CATransform3DTranslate(identity, 75, 0.0, 0.0);
    toValue = CATransform3DRotate(toValue,M_PI, 0.0, 0.0, 1.0);
    
    scale.toValue = [NSValue valueWithCATransform3D:toValue];
    scale.autoreverses = NO;

    scale.repeatCount = HUGE;
    scale.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    scale.duration = 2;
    
    
    [layer addAnimation:scale forKey:@"scaleAnimation"];
    
    CAReplicatorLayer *Rlayer = [CAReplicatorLayer layer];
    Rlayer.instanceCount = 6;
    Rlayer.instanceDelay = 0;
    Rlayer.frame = CGRectMake(0, 0, 25, 25);
    CATransform3D trans3d = CATransform3DIdentity;
    trans3d = CATransform3DTranslate(trans3d, 75, 0, 0);
    trans3d = CATransform3DRotate(trans3d, 60*M_PI/180, 0, 0, 1.0);
    
    Rlayer.instanceTransform = trans3d;
    [Rlayer addSublayer:layer];
    
    UIView * subView = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 300, 300)];
    subView.center = CGPointMake(200,250);
    //    subView.backgroundColor = [UIColor redColor];
    [subView.layer addSublayer:Rlayer];
    [self.view addSubview:subView];

第五个


QQ20180701-112104-HD.gif
  CAReplicatorLayer *replicatorLayer = [CAReplicatorLayer layer];
    replicatorLayer.frame = CGRectMake(100, 100, 8, 8);
    //闪动点
    CALayer *dot = [CALayer layer];
    dot.bounds = CGRectMake(0, 0, 8, 8);
    dot.cornerRadius = 4;
    dot.masksToBounds = YES;
    dot.position = CGPointMake(60,10);
    dot.backgroundColor = [UIColor blueColor].CGColor;
    [replicatorLayer addSublayer:dot];
    
    
    NSInteger count = 12;
    replicatorLayer.instanceCount = count;
    CGFloat angel  = 2* M_PI/count;
    replicatorLayer.instanceTransform = CATransform3DMakeRotation(angel, 0, 0, 1);
    //添加动画
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    CFTimeInterval duration = 1.5;
    animation.duration = duration;
    animation.fromValue = @1.0;
    animation.toValue = @0.1;
    animation.repeatCount = MAXFLOAT;
    animation.removedOnCompletion = NO;
    animation.fillMode = kCAFillModeForwards;
    [dot addAnimation:animation forKey:nil];
    replicatorLayer.instanceDelay = duration/ count;
    dot.transform = CATransform3DMakeScale(0.01, 0.01, 0.01);
    
    UIView * subView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 300, 300)];
    subView.center = CGPointMake(SCREEN_WIDTH/2, SCREEN_HEIGHT/2);
    //    subView.backgroundColor = [UIColor redColor];
    [subView.layer addSublayer:replicatorLayer];
   
    [self.view addSubview:subView];

下面是demo地址。
https://github.com/Butteryflyyer/AnimateGroup 给颗星哦

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,951评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,606评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,601评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,478评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,565评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,587评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,590评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,337评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,785评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,096评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,273评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,935评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,578评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,199评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,440评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,163评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,133评论 2 352

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • 在狼群里长大的狼孩,不会觉得自己是个人,不会习惯用两条腿走路,不会喜欢用筷子吃饭。 我高中时内向文静,下课不爱乱跑...
    风约啊阅读 118评论 0 1
  • 把悲伤留在身后 对这世界敞开笑容 把眼泪藏在背后 对懦弱冷嘲热讽 永远把微笑留给别人 却不知道自己 只剩下痛苦了 ...
    雪际陸痕阅读 292评论 0 2
  • 元认知能力就是对自己思考过程的认知与理解。实质性就是对自己认知的一个加工过程,完成自我觉察、自我反省、自我评价、与...
    簡簡單單非非想阅读 174评论 0 1
  • 从创建带上架app流程 //www.greatytc.com/p/a01988025827 http://...
    ZD_0216阅读 131评论 0 0