• (一二一)核心动画基础


    核心动画基于QuartzCore框架,只能用于CALayer,可以实现3D效果,它在子线程中执行动画,不会阻塞主线程。

    要实现核心动画,主要使用CABasicAnimation实现单步动画、使用CAKeyframeAnimation实现帧动画。

    动画的主要属性有duration、keyPath、value、repeatCount等。

    动画执行完毕后默认会复位,要取消复位,需要以下两行代码:

    anim.removedOnCompletion = NO;
    anim.fillMode = kCAFillModeForwards;

    要实现单步动画,使用CABasicAnimation对象即可:

    利用keyPath指定操作的属性,使用toValue指定变化到的值。

    CABasicAnimation *anim = [CABasicAnimation animation];
    anim.duration = 0.5f;
    anim.keyPath = @"transform";
    anim.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 0, 1, 0)];
    anim.repeatCount = 100;
    // 动画默认会复位,要取消复位,首先禁止动画移除,然后设置保持新位置。
    anim.removedOnCompletion = NO;
    anim.fillMode = kCAFillModeForwards;
    [_blueView.layer addAnimation:anim forKey:nil];

    要实现帧动画,通过CAKeyframeAnimation对象,通过多个value指定动作,或者通过贝塞尔曲线指定路径都可以:

    多个value:

    CAKeyframeAnimation *anim2 = [CAKeyframeAnimation animation];
    anim2.duration = 0.5f;
    anim2.keyPath = @"position";
    anim2.repeatCount = 100;
    NSValue *p1 = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(50, 0, 0)];
    NSValue *p2 = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(0, 0, 0)];
    NSValue *p3 = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(-50, 0, 0)];
    NSValue *p4 = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(0, 0, 0)];
    anim2.values = @[p1,p2,p3,p4];
    anim2.removedOnCompletion = NO;
    anim2.fillMode = kCAFillModeForwards;

    路径:

    CAKeyframeAnimation *anim2 = [CAKeyframeAnimation animation];
    anim2.duration = 0.5f;
    anim2.keyPath = @"position";
    anim2.repeatCount = 100;
    anim2.removedOnCompletion = NO;
    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(100,100,200,200)];
    anim2.path = path.CGPath;
    anim2.fillMode = kCAFillModeForwards;
    不要忘记把动画添加到layer。

  • 相关阅读:
    Timer定时任务
    spring boot配置多数据源
    消费者模块调用提供者集群报错
    修改windHost文件
    spring常用注解+Aop
    添加ClustrMaps
    无题
    2020年3月21日 ICPC训练联盟周赛,Benelux Algorithm Programming Contest 2019
    2020年3月14日 ICPC训练联盟周赛,Preliminaries for Benelux Algorithm Programming Contest 2019
    2020.4.12 个人rating赛 解题+补题报告
  • 原文地址:https://www.cnblogs.com/aiwz/p/6154055.html
Copyright © 2020-2023  润新知