zoukankan      html  css  js  c++  java
  • CAKeyframeAnimation

    • IOS 核心动画之CAKeyframeAnimation

    • 简单介绍

    是CApropertyAnimation的子类,跟CABasicAnimation的区别是:CABasicAnimation只能从

    一个数值(fromValue)变到另一个数值(toValue),而CAKeyframeAnimation会使用一个NSArray保存这些数值

    • 属性解析:

    • values:就是上述的NSArray对象。里面的元素称为”关键帧”(keyframe)。动画对象会在指定的时间(duration)内,依次显示values数组中的每一个关键帧

    • path:可以设置一个CGPathRefCGMutablePathRef,让层跟着路径移动。path只对CALayer的anchorPoint和position起作用。如果你设置了path,那么values将被忽略

    • keyTimes:可以为对应的关键帧指定对应的时间点,其取值范围为0到1.0,keyTimes中的每一个时间值都对应values中的每一帧.当keyTimes没有设置的时候,各个关键帧的时间是平分的

    • 说明:CABasicAnimation可看做是最多只有2个关键帧的CAKeyframeAnimation

    • Values方式:

    - CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
    
    animation.keyPath = @"position";
    
    NSValue *value1=[NSValue valueWithCGPoint:CGPointMake(100, 100)];
    
    NSValue *value2=[NSValue valueWithCGPoint:CGPointMake(200, 100)];
    
    NSValue *value3=[NSValue valueWithCGPoint:CGPointMake(200, 200)];
    
    NSValue *value4=[NSValue valueWithCGPoint:CGPointMake(100, 200)];
    
    NSValue *value5=[NSValue valueWithCGPoint:CGPointMake(100, 100)];
    
    animation.values=@[value1,value2,value3,value4,value5]; animation.repeatCount=MAXFLOAT;
    
    animation.removedOnCompletion = NO;
    
    animation.fillMode = kCAFillModeForwards;
    
    animation.duration = 4.0f;
    
    animation.timingFunction=[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    
    animation.delegate=self;
    
    [self.myView.layer addAnimation:animation forKey:nil];
    
    • Path方式:
    - CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
    
    animation.keyPath = @"position";
    
    CGMutablePathRef path=CGPathCreateMutable();
    
    CGPathAddEllipseInRect(path, NULL, CGRectMake(150, 100, 100, 100));
    
    animation.path=path;
    
    CGPathRelease(path);
    
    animation.repeatCount=MAXFLOAT;
    
    animation.removedOnCompletion = NO;
    
    animation.fillMode = kCAFillModeForwards;
    
    animation.duration = 4.0f;
    
    animation.timingFunction=[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    
    animation.delegate=self;
    
    [self.myView.layer addAnimation:animation forKey:nil];
    
    • keyPath可以使用的key
    - #define angle2Radian(angle) ((angle)/180.0*M_PI)
    
    - transform.rotation.x 围绕x轴翻转 参数:角度 angle2Radian(4)
    
    transform.rotation.y 围绕y轴翻转 参数:同上
    
    transform.rotation.z 围绕z轴翻转 参数:同上
    
    transform.rotation 默认围绕z轴
    
    transform.scale.x x方向缩放 参数:缩放比例 1.5
    
    transform.scale.y y方向缩放 参数:同上
    
    transform.scale.z z方向缩放 参数:同上
    
    transform.scale 所有方向缩放 参数:同上
    
    transform.translation.x x方向移动 参数:x轴上的坐标 100
    
    transform.translation.y x方向移动 参数:y轴上的坐标
    
    transform.translation.z x方向移动 参数:z轴上的坐标
    
    transform.translation 移动 参数:移动到的点 (100,100)
    
    opacity 透明度 参数:透明度 0.5
    
    backgroundColor 背景颜色 参数:颜色 (id)[[UIColor redColor] CGColor]
    
    cornerRadius 圆角 参数:圆角半径 5
    
    borderWidth 边框宽度 参数:边框宽度 5
    
    bounds 大小 参数:CGRect
    
    contents 内容 参数:CGImage
    
    contentsRect 可视内容 参数:CGRect 值是0~1之间的小数
    
    hidden 是否隐藏
    
    position
    
    shadowColor
    
    shadowOffset
    
    shadowOpacity
    
    shadowRadius
    

    转载链接:http://www.jianshu.com/p/daa58c99ee1e

  • 相关阅读:
    Web API 依赖注入与扩展
    ASP.NET Web API 简介
    经典SQL语句大全_主外键_约束
    自学MVC看这里——全网最全ASP.NET MVC 教程汇总
    正则表达式的汉字匹配
    Sql Server 删除所有表
    细说ASP.NET Forms身份认证
    NET Web的身份认证
    C#百万数据查询超时问题
    nodejs 命令行交互
  • 原文地址:https://www.cnblogs.com/Free-Thinker/p/11262708.html
Copyright © 2011-2022 走看看