作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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/
在 Jetpack Compose Animation 中,对于 tween AnimationSpec,我们可以有延迟 val translationY by tra
我是一名优秀的程序员,十分优秀!