图片执行放大动画后,不能保持放大效果问题解决

    CGPoint fromPoint = imageView.center;
    
     // 路径曲线
    UIBezierPath *movePath = [UIBezierPath bezierPath];
    [movePath moveToPoint:fromPoint];
    CGPoint toPoint = view.center;
    [movePath addLineToPoint:toPoint];

     // 关键帧
    CAKeyframeAnimation *moveAnim = [CAKeyframeAnimation animationWithKeyPath: @" position "];
    moveAnim.path = movePath.CGPath;
    moveAnim.removedOnCompletion = YES;
    
 
    
    
     // 旋转变化
    CABasicAnimation *scaleAnim = [CABasicAnimation animationWithKeyPath: @" transform "];
    scaleAnim.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
     // x,y轴放大,Z 轴不变
    scaleAnim.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale( 4.0, 4.01.0)];
    scaleAnim.removedOnCompletion = YES;
    
     imageView.layer.transform = CATransform3DMakeScale(4.0,4.01.0);
    
     // 关键帧,旋转,组合起来执行
    CAAnimationGroup *animGroup = [CAAnimationGroup animation];
    animGroup.animations = [NSArray arrayWithObjects:moveAnim,scaleAnim,nil];
    animGroup.duration =  1;
    [imageView.layer addAnimation:animGroup forKey: @" transform "];


注意上面红色 部分代码,直接修改图片动画后的效果,这样就能保持动画的效果了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值