美文网首页
CABasicAnimation动画属性合集

CABasicAnimation动画属性合集

作者: 时间戳 | 来源:发表于2022-05-17 19:21 被阅读0次

    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动画属性合集

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