再来看看动画

动画一般有:UIKit动画和CoreAnimation(核心)动画

下面主要是核心动画的内容:
http://www.cnblogs.com/wujy/p/5203995.html

动画高级分析:
http://www.jianshu.com/p/272aa1f26c62

CABasicAnimation:基础动画
1、[animationwithkeypath如何知道有哪些值]:

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 = 透明度
margin = 布局
zPosition = 翻转
backgroundColor = 背景颜色
cornerRadius = 圆角
borderWidth = 边框宽
bounds = 大小
contents = 内容
contentsRect = 内容大小
cornerRadius = 圆角
frame = 大小位置
hidden = 显示隐藏
mask
masksToBounds
opacity
position
shadowColor
shadowOffset
shadowOpacity
shadowRadius

CAKeyframeAnimation:关键帧动画
CAAnimationGroup(动画组)
CATransition(转场动画)

你可能感兴趣的:(再来看看动画)