0

我有一个简单的补间:

const grass = styler(/* some element */)
const from = +grass.get('opacity')
const tweener = tween({from, to: 0, duration: 5000, ease: easing.linear}).start(v => grass.set('opacity', v))

如何让它跳到补间的末尾然后立即停止补间?例如,在这种情况下,跳转到 0 opacity 并停止补间?我知道我可以做到:

grass.set('opacity', 0)
tweener.stop()

但我相信有一个更自然的解决方案。就像是:

tweener.jumpToEndAndStop()

TIA

4

1 回答 1

0

基于https://code.tutsplus.com/tutorials/introduction-to-popmotion-part-1-tween--cms-30431我认为这就是我想要的:

tweener.seek(1)
tweener.stop()
于 2021-05-21T01:36:06.430 回答