iOS之属性动画

写这些之前,我想说一下,该文章只是我的笔记,希望对需要的人有帮助。

属性动画
通过改变图层或者视图上面的属性值(支持动画的属性)产生的动画
属性动画的常用方法属性
1.初始化 + (instancetype)animationWithKeyPath:(nullable NSString *)path
path:需要产生动画的属性
如:中心点 -> 移动
2.keyPath 描述 动画的属性

改变动画的属性:
        transform.scale = 比例转换
        transform.scale.x
        transform.scale.y
        transform.rotation.z
        opacity = 透明度
        zPosition
        backgroundColor 背景颜色
        cornerRadius 拐角
        borderWidth 边框的宽度
        bounds
        contents 内容
        contentsRect
        frame
        hidden
        masksToBounds
        opacity
        position
        shadowColor
        shadowOffset
        shadowOpacity
        shadowRadius

基础动画
CABasicAnimation:基础动画
介绍:
通过改变某个属性的值 到某个值 ->只能设置两个值
fromValue 开始值
toValue 结束值
byValue 通过哪个值

CAAnimation:核心动画 是所有动画的父类

1、CAMediaTiming 媒体时间类协议
AMediaTiming中的协议内容
1》beginTime 动画开始的时间 默认为0
2、duration 动画的持续时间 默认为0 持续时间 受速度的影响 
实际的动画完成时间 = 持续时间/速度
3.speed 动画播放的速度 默认为1 速度设置成0 可以暂停动画  
speed 2秒  duration 60秒 动画真正播放完成的时间 30秒
4、timeOffset  动画播放时间的偏移量
5、repeatCount 动画的循环次数  默认是0 只播放一次
6、repeatDuration 动画循环的持续时间  只能设置其中的一个属性 repeatCount/repeatDuration
7、autoreverses 是否以动画的形式 返回到播放之前的状态
8、fillMode 设置当前对象在非活动时间段的行为 要想fillMode有效 需设置removedOnCompletion = NO  
KCAFillModeForwards 当动结束后,Layer会一直保持着动画最后的状态
kCAFillModeBackwards 立即进入动画的初始状态并等待动画开始
            kCAFillModeBoth 动画加入后开始之前 layer处于动画初始状态 动画结束后layer保持动画最后的状态
            kCAFillModeRemoved 默认值 动画结束后 layer会恢复到之前的状态

2、CAAnimationd动画属性方法介绍
0.初始化 animation
1.timingFunction 速度控制类控制动画运行的节奏

初始化:functionWithName:
kCAMediaTimingFunctionLinear 匀速
            kCAMediaTimingFunctionEaseIn 慢进快出
            kCAMediaTimingFunctionEaseOut 快进慢出
            kCAMediaTimingFunctionEaseInEaseOut 慢进慢出 中间加速
            kCAMediaTimingFunctionDefault 默认

2.delegate
3.removedOnCompletion 动画完成的时候 是否移除动画效果
4.代理方法

  • (void)animationDidStart:(CAAnimation *)anim
  • (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag

案例:
我们首先创建懒加载,为了方便使用;

//背景
@property (nonatomic,strong) CALayer *layer;
//花瓣
@property (nonatomic,strong) CALayer *petalLayer;
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor blackColor];
    [self.view.layer addSublayer:self.layer];
    [self.view.layer addSublayer:self.petalLayer];
    
    
}
-(CALayer *)layer{
    if (_layer) {
        return _layer;
    }
    _layer = [CALayer layer];
    _layer.position = CGPointMake(self.view.center.x, self.view.center.y+100);
    UIImage *image = [UIImage imageNamed:@"4"];
    _layer.bounds = CGRectMake(0, 0, image.size.width/2, image.size.height/2);
    _layer.contents = (id)image.CGImage;
    return _layer;
    
}
-(CALayer *)petalLayer{
    if (_petalLayer) {
        return _petalLayer;
    }
    _petalLayer = [CALayer layer];
    _petalLayer.position = CGPointMake(self.view.center.x, 50);
    UIImage *image = [UIImage imageNamed:@"3"];
    _petalLayer.bounds = CGRectMake(0, 0, image.size.width, image.size.height);
    _petalLayer.contents = (id)image.CGImage;
    return _petalLayer;
    
}
/*
 - (CABasicAnimation *)moveAnimation{
 if (_moveAnimation) {
 return _moveAnimation;
 }
 _moveAnimation = [CABasicAnimation animationWithKeyPath:@"position"];
 //    CGPoint -> 转id
 //    CGPoint -> NSValue
 _moveAnimation.fromValue = [NSValue valueWithCGPoint:self.petalLayer.position];
 _moveAnimation.toValue = [NSValue valueWithCGPoint:toValue];
 return _moveAnimation;
 }
 */
//移动中心点
-(void)demo1:(CGPoint)toValue{
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
    
//    CGPoint -> 转id
//   CGPoint -> NSValue 
    animation.fromValue = [NSValue valueWithCGPoint:self.petalLayer.position];
    animation.toValue = [NSValue valueWithCGPoint:toValue];
//    CAMediaTimingFunction协议->duration动画的持续时间
    animation.duration = 3;
//    动画执行的总时间 受动画速度的影响
    animation.speed = 2;
    
//    设置动画在完成的时候 固定在完成的状态
//    这个属性 必须把remocedOnCompletion 设置成NO 这个属性 才可以效果
    animation.removedOnCompletion = NO;
    animation.fillMode = kCAFillModeBoth;
    
//    速度控制
//    快进慢出
    animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
    
    
//    CALayer -> addAnimation: forKey:添加动画
//    Animation 动画
//    forKey 表示动画的字符串 可以通过key 来找到这个动画
    
    [self.petalLayer addAnimation:animation forKey:@"可以通过这个key找到此动画"];
    
//    查找某个可以对应的动画
//    CABasicAnimation *an = (CABasicAnimation *)[self.petalLayer animationForKey:@"可以通过这个key找到此动画"];
    
}

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    
    [self demo1:[[touches anyObject]locationInView:self.view]];
  
    
}

这时候我们就设置了一个能下落的花瓣。


12F1DDEF-7C17-4879-BB41-5D1D5CEC40F9.png

下面是设置一个心动的图片:

-(void)demo2{
    self.view.backgroundColor = [UIColor whiteColor];
    UIImage *image = [UIImage imageNamed:@"心跳"];
    self.layer.contents = (id)image.CGImage;
    self.layer.bounds = CGRectMake(0, 0, image.size.width/10, image.size.height/10);
    
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"bounds"];
    /*
     1.放大后还原到原来的位置 以动画的方法
     2.先慢后快
     3.一直循环
     */
    animation.fromValue = [NSValue valueWithCGRect:self.layer.bounds];
    animation.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, image.size.width/7, image.size.height/7)];
    animation.repeatCount= HUGE;
    animation.duration = 0.5;
    // 以动画的效果 还原到 开始的状态
    animation.autoreverses = YES;
    animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
    [self.layer addAnimation:animation forKey:@"heartJamp"];
    
    
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
   
    [self demo2];
  
}
C71D9B8D033DE0C565DFC5C8FE529A44.jpg

如果有好的建议,希望提出来,一起讨论。

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

推荐阅读更多精彩内容

  • 在iOS实际开发中常用的动画无非是以下四种:UIView动画,核心动画,帧动画,自定义转场动画。 1.UIView...
    请叫我周小帅阅读 3,076评论 1 23
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥iOS动画全貌。在这里你可以看...
    F麦子阅读 5,091评论 5 13
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 8,460评论 6 30
  • 先看看CAAnimation动画的继承结构 CAAnimation{ CAPropertyAnimation { ...
    时间不会倒着走阅读 1,635评论 0 1
  • 动画的继承结构 CAAnimation{CAPropertyAnimation{CABasicAnimation{...
    早起的虫儿子被鸟吃阅读 870评论 0 1