简体中文
Appearance
纯色填充对象, 可设置给 fill 或 stroke 属性。
string
填充类型为 solid。
solid
Color
颜色。
BlendMode
混合模式,默认为 normal。
boolean
是否可见,默认为 true。
number
不透明度,默认为 1,暂时仅针对 color 为 颜色对象 有效。
// #纯色填充 import { Leafer, Rect } from 'leafer-ui' const leafer = new Leafer({ view: window }) const rect = new Rect({ width: 100, height: 100, fill: { type: 'solid', color: '#32cd79' }, }) leafer.add(rect)