gpt4 book ai didi

android - 有没有办法在 Jetpack Compose Animation 中延迟 Spring AnimationSpec?

转载 作者:行者123 更新时间:2023-12-04 23:58:37 26 4
gpt4 key购买 nike

在 Jetpack Compose Animation 中,对于 tween AnimationSpec,我们可以有延迟

                val translationY by transition.animateFloat(
transitionSpec = {
tween(
delayMillis = 1000, // Delay here
durationMillis = 2000
)
},
label = ""
) { if (it) 0f else 180f }

但是,对于 Spring AnimationSpec,我们只有 dampingRatio(如下所示的 0.25f)和 Stiffness(如下所示的 100f)。无法添加延迟

                val translationY by transition.animateFloat(
transitionSpec = {
spring(0.25f, 100f)
},
label = ""
) { if (it) 0f else 180f }

如何使用 Spring AnimationSpec 为动画添加延迟?

最佳答案

我设法将弹跳效果添加到与 spring 非常相似的补间中。只需使用

easing = { OvershootInterpolator().getInterpolation(it) }

OvershootInterpolator 来自 android.view.animation 包。

您可以通过其构造函数向 OvershootInterpolator 提供张力参数以更改弹性。

关于android - 有没有办法在 Jetpack Compose Animation 中延迟 Spring AnimationSpec?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71405964/

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