收藏
回答

applyAnimatedStyle 设置阴影如何写?

  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
  },
 资料不是很全面啊。


最后一次编辑于  05-03
回答关注问题邀请回答
收藏
登录 后发表内容