有没有办法在图层上添加特定于 webkit 的样式?

Is there a way to add webkit specific styles on a layer?

例如我可以添加 -webkit-backdrop-filter: saturate(1.8) blur(20px); 在图层上快速模拟背景模糊?

是的,您可以使用图层的 style 属性 来设置自定义 css 样式。示例:

layerB = new Layer
    image: Utils.randomImage()

layerA = new Layer

layerA.style["-webkit-backdrop-filter"] = "saturate(1.8) blur(20px)"