onLoad() {
const offset = wx.worklet.shared(0)
this.applyAnimatedStyle('#moved-box', () => {
'worklet';
return {
box-shadow: ` 0 0 0 20px #fff, 0 0 0 40px red;`
}
})
this._offset = offset
},
如上面的代码,box-shadow ‘小横线’是会报错的,不知道怎么写?我就是想动态的调协阴影。
官方都是transform的设置。
const offset = shared(0)
this.applyAnimatedStyle('#moved-box', () => {
'worklet';
return {
transform: `translateX(${offset.value}px)`
}
})
this._offset = offset
},
资料不是很全面啊。