CABasicAnimation动画属性合集

CABasicAnimation动画keyPath归纳

1)位置动画
      postition  //位置 toValue:移动到制定位置 byValue:偏移制定距离
      transfomr.translation.x // 位移动画,沿x轴方向移动
      transfomr.translation.y // 位移动画,沿y轴方向移动
      transfomr.translation.z // 位移动画,沿y轴方向移动
2)缩放动画
      transform.scale.x  // width缩放系数
      transform.scale.y  // height缩放系数
3)旋转动画
      transform.rotation  //旋转
4)颜色动画
      backgroundColor //颜色渐变
      borderColor // 边框渐变色
5)淡入淡出动画
     opacity // 渐变色-淡入淡出
6)高级效果
      cornerRadius // 圆角动画
      borderWidth // 边框动画
      shadowOffset //阴影渐变动画 CGSize
7)  其他
      strokeEnd 划线

你可能感兴趣的:(CABasicAnimation动画属性合集)