美文网首页
Animation总结一

Animation总结一

作者: 呉囲仌犮yzx | 来源:发表于2016-03-20 23:51 被阅读175次

1.翻转的动画

//开始动画

[UIView beginAnimations:@"doflip" context:nil];

//设置时常

[UIView setAnimationDuration:1];

//设置动画淡入淡出

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

//设置代理

[UIView setAnimationDelegate:self];

//设置翻转方向

[UIView setAnimationTransition:

UIViewAnimationTransitionFlipFromLeft  forView:manImageView cache:YES];

//动画结束

[UIView commitAnimations];

2.旋转的动画

//创建一个CGAffineTransform  transform对象

CGAffineTransform  transform;

//设置旋转度数

transform = CGAffineTransformRotate(manImageView.transform,M_PI/6.0);

//动画开始

[UIView beginAnimations:@"rotate" context:nil ];

//动画时常

[UIView setAnimationDuration:2];

//添加代理

[UIView setAnimationDelegate:self];

//获取transform的值

[manImageView setTransform:transform];

//关闭动画

[UIView commitAnimations];

3.偏移动画

[UIView beginAnimations:@"move"context:nil];

[UIView setAnimationDuration:2];

[UIView setAnimationDelegate:self];

//改变它的frame的x,y的值

manImageView.frame=CGRectMake(100,100,

120,100);

[UIView commitAnimations];

4.翻页动画

[UIView beginAnimations:@"curlUp" context:nil];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];//指定动画曲线类型,该枚举是默认的,线性的是匀速的

//设置动画时常

[UIView setAnimationDuration:1];

[UIView setAnimationDelegate:self];

//设置翻页的方向

[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:manImageView cache:YES];

//关闭动画

[UIView commitAnimations];

5.缩放动画

CGAffineTransform  transform;

transform = CGAffineTransformScale(manImageView.transform,1.2,1.2);

[UIView beginAnimations:@"scale" context:nil];

[UIView setAnimationDuration:2];

[UIView setAnimationDelegate:self];

[manImageView setTransform:transform];

[UIView commitAnimations];

6.取反动画

CGAffineTransform transform;

transform=CGAffineTransformInvert(manImageView.transform);

[UIView beginAnimations:@"Invert" context:nil];

[UIView setAnimationDuration:2];//动画时常

[UIView setAnimationDelegate:self];

[manImageView setTransform:transform];//获取改变后的view的transform

[UIView commitAnimations];//关闭动画

相关文章

  • Animation总结一

    1.翻转的动画 //开始动画[UIView beginAnimations:@"doflip" context:n...

  • 动画

    iOS动画(Core Animation)总结

  • iOS-UIView动画-UIView Animation简介

    UIView Animation动画是iOS开发中最常用的动画类,下面总结一下UIView Animation动画...

  • iOS动画总结(Core Animation&POP&a

    iOS动画总结(Core Animation&POP&贝塞尔&Transform) iOS动画总结(Core An...

  • Core Animation 总结

    以前由于项目需要 也写了一些动画 ,但是知识不系统,很散。这段时间趁着项目完成的空袭,来跟着大神的脚步系统的总结一...

  • core Animation总结

    核心动画的基本结构 CAAnimation 是个虚类 不能直接使用 继承之下有三个子类 CAAnimationG...

  • Android Animation总结

    Android的动画用得好的话可以产生意想不到的效果,用得不好的话就会使程序产生Crash或者视图加载缓慢 And...

  • Core Animation总结

    原文作者:60秒热度https://juejin.im/post/5cd23f665188252bf01b7a92...

  • Android-Animation 总结(一)

    鉴于今天是劳动节,鼓励自己整理一下android相关的知识,祝所有劳动者节日快乐。 android 的动画要从3....

  • CSS3动画简要总结

    主要总结一下CSS3动画中这几块:transition(过渡),animation(动画),transform转换...

网友评论

      本文标题:Animation总结一

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