动画结束进入初始值

发布于 2024-11-06 03:36:50 字数 347 浏览 0 评论 0原文

我在按钮上运行动画,在其中更改不透明度。动画完成后,所有按钮的不透明度都会恢复到初始值。代码:

CABasicAnimation animation =  CABasicAnimation.FromKeyPath("opacity");
animation.To = NSNumber.FromFloat( 0.1f );
animation.Duration = animationDuration;
animation.TimingFunction = CAMediaTimingFunction.FromName (CAMediaTimingFunction.EaseOut);

如何设置动画保持在To值?

I run an animation on my buttons where I change i.e. Opacity. When the animation is complete all the button's Opacity goes back to initial values. The code:

CABasicAnimation animation =  CABasicAnimation.FromKeyPath("opacity");
animation.To = NSNumber.FromFloat( 0.1f );
animation.Duration = animationDuration;
animation.TimingFunction = CAMediaTimingFunction.FromName (CAMediaTimingFunction.EaseOut);

How can I set the animation to stay in the To value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨后彩虹 2024-11-13 03:36:50

我没有在代码中看到错误,但是还有另一种方法可以代替 CoreAnimation 来实现这一点,这有点冗长。

对于 UIKit 元素,使用 UIView.Animate 方法通常更容易。所以,你的样本将是:

UIView.Animate (
    animationDuration,
    0,
    UIViewAnimationOptions.CurveEaseOut,
    delegate {yourButton.Alpha = 0.1f; },
    null);

I don't see the error in the code, but there is another way to do that instead of CoreAnimation, which is a bit verbose.

For UIKit elements it is usually easier to use the UIView.Animate method. So , your sample would be:

UIView.Animate (
    animationDuration,
    0,
    UIViewAnimationOptions.CurveEaseOut,
    delegate {yourButton.Alpha = 0.1f; },
    null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文