worklet.timing toValue 类型问题?
SharedValue worklet.shared(any initialValue)参数 any initialValue(任何类型包括数组)初始值,可通过 [代码].value[代码] 属性进行读取和修改。类型可以是 [代码]number | string | bool | null | undefined | Object | [代码][代码]Array [代码][代码]| Function[代码]。 但是AnimationObject worklet.timing(number toValue, Object options, function callback) 但timing 只支持number ? 如果用shared 创建了一个数组,如何用timing 去改变这个值? 官方例子都是用的number ,没有其他类型的说明。const { shared, sequence, timing, spring } = wx.worklet
const offset = shared(0)
offset.value = sequence(timing(100), spring(0))
上面是官方例子,如要改成 数组呢怎么办?
const offset = shared([0,100])
offset.value = sequence(timing(???????), spring(0))
针对CSS不光有数值上的调整,字符串也需要,display:flex background-color: cornflowerblue ,这种怎么办?