我有一个简单的补间:
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