gpt4 book ai didi

ios - CABasicAnimation 起源于右上角而不是中心

转载 作者:行者123 更新时间:2023-11-29 13:00:24 25 4
gpt4 key购买 nike

我有一个圆圈,我将其设置为向外生长并变大的动画。不幸的是,尽管我设置了 anchorPoint 它并没有从中心向外动画,它似乎锁定了左上角的位置。这是怎么回事?

请看这张描述圆圈偏离中心的图片

enter image description here

代码

- (void)setLayerProperties {
rippleLayer = [[CAShapeLayer alloc] init];
rippleLayer.fillColor = [UIColor clearColor].CGColor;

rippleLayer.strokeColor = _Color.CGColor;
//rippleLayer.contentsGravity = @"center";
rippleLayer.anchorPoint = CGPointMake(0.5,0.5);
rippleLayer.bounds = self.bounds;

rippleLayer.path = bezierPath.CGPath;
[self.layer addSublayer:rippleLayer];
}

// Now animate the circle outwards
rippleLayer.opacity = 1;
CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
[scale setFromValue:[NSNumber numberWithFloat:1.0f]];
[scale setToValue:[NSNumber numberWithFloat:2.0f]];
[scale setRepeatCount:1];
[scale setDuration:1.0f];
//[scale setRemovedOnCompletion:YES];
[scale setFillMode:kCAFillModeForwards];

[rippleLayer addAnimation:scale forKey:scale.keyPath];

最佳答案

要在其中心缩放图层,您需要设置图层的位置。这可能对您有帮助

I want to draw a Smooth animations in iOS using CAPropertyAnimations

定义弧度(角度)((角度)/180.0 * M_PI)

CGPoint testCenter = CGPointMake(144.5, 230.0);
CAShapeLayer *aTestLayer = [CAShapeLayer layer];
aTestLayer.path = [UIBezierPath bezierPathWithArcCenter:**CGPointZero** radius:15.0 startAngle:RADIANS(0) endAngle:RADIANS(360) clockwise:YES].CGPath;
aTestLayer.fillColor = [UIColor clearColor].CGColor;
aTestLayer.strokeColor = [UIColor whiteColor].CGColor;
**aTestLayer.position = testCenter;**
aTestLayer.borderWidth = 2.0;

[self.view.layer addSublayer:aTestLayer];

CABasicAnimation *pulse = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
pulse.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
pulse.duration = 2;
pulse.repeatCount = HUGE_VALF;
pulse.autoreverses = YES;
pulse.fromValue = [NSNumber numberWithFloat:1.0];
pulse.toValue = [NSNumber numberWithFloat:2.0];


[aTestLayer addAnimation:pulse forKey:nil];

关于ios - CABasicAnimation 起源于右上角而不是中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19914066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com