美文网首页
相关动画

相关动画

作者: 吾家有谷粒儿 | 来源:发表于2017-11-29 15:06 被阅读0次

1.设置View顺时针旋转

//音乐播放旋转

CABasicAnimation  *animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];

//默认是顺时针效果,若将fromValue和toValue的值互换,则为逆时针效果

animation.fromValue = [NSNumber numberWithFloat:0.f];

animation.toValue =  [NSNumber numberWithFloat: M_PI *2];

animation.duration  = 5;//旋转时间5s一轮

animation.autoreverses = NO;

animation.fillMode =kCAFillModeForwards;

animation.repeatCount = MAXFLOAT; //如果这里想设置成一直自旋转,可以设置为MAXFLOAT,否则设置具体的数值则代表执行多少次

[bottomView.layer addAnimation:animation forKey:nil];

2.点击button放大再缩小的功能

-(void)rightButtonClick:(UIButton*)sender{

        sender.transform = CGAffineTransformIdentity;

        [UIView animateKeyframesWithDuration:0.5 delay:0 options:0 animations: ^{

         [UIView addKeyframeWithRelativeStartTime:0 relativeDuration:1 / 3.0 animations: ^{

        sender.transform = CGAffineTransformMakeScale(1.5, 1.5);

       }];

      [UIView addKeyframeWithRelativeStartTime:1/3.0 relativeDuration:1/3.0 animations: ^{

      sender.transform = CGAffineTransformMakeScale(0.8, 0.8);

      }];

       [UIView addKeyframeWithRelativeStartTime:2/3.0 relativeDuration:1/3.0 animations: ^{

      sender.transform = CGAffineTransformMakeScale(1.0, 1.0); 

       }];

       } completion:nil];

  }

3.

相关文章

  • 相关动画

    1.设置View顺时针旋转 //音乐播放旋转 CABasicAnimation *animation = [CAB...

  • 动画相关

    1.简易动画 头尾式[UIView beginAnimations:nil context:nil];/** 需要...

  • 动画相关

    http://www.jianshu.com/p/9fa025c42261

  • 动画相关

    打破盒子模式的限制,使用Clip-Path创建响应式图形 CSS3/SVG clip-path路径剪裁遮罩属性简介...

  • 动画相关

    使用形变属性时,注意:

  • Flutter跨平台移动端开发丨Animation、Animat

    目录 动画相关主要对象 缩放动画 非线性缩放动画 淡入淡出 非线性淡入淡出 平移动画 非线性平移动画 动画相关主要...

  • iOS动画系列一

    前言:做相关demo动画已经有一段时间了、现在闲下来记录下相关动画制作。iOS动画主要就是路径动画、帧动画、缩放动...

  • Android笔记——动画(0):笔记目录

    动画相关——笔记目录列表: 待定... 动画相关——参考博客目录列表: Animation教程_极客学院 Wiki...

  • 相关类对应功能

    RxUtils RxAnimationTool(动画相关) RxAppTool(应用相关) RxBarTool(状...

  • js动画相关

    获取不含Border样式的兼容写法 获取相对于文档的位置jquery中使用 $("#id").offset() 原...

网友评论

      本文标题:相关动画

      本文链接:https://www.haomeiwen.com/subject/rvbubxtx.html