美文网首页
上升动画

上升动画

作者: 赤焰军少帅林殊 | 来源:发表于2018-05-22 11:10 被阅读11次
    -(CABasicAnimation *)moveX:(float)time X:(NSNumber *)x
    {
        CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.translation.y"];///.y的话就向下移动。
        animation.toValue = x;
        animation.duration = time;
        animation.removedOnCompletion = NO;//yes的话,又返回原位置了。
        animation.repeatCount = MAXFLOAT;
        animation.fillMode = kCAFillModeForwards;
        return animation;
    }
    
    

    相关文章

      网友评论

          本文标题:上升动画

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