简体中文
Appearance
元素的不透明度。
number
元素的不透明度,取值范围为 0 ~ 1, 默认为 1。
元素在全局视图中的不透明度(会受父元素影响)。
当 visible 为 false 时,此属性值为 0。
visible
// #设置不透明度 import { Leafer, Rect } from 'leafer-ui' const leafer = new Leafer({ view: window }) const rect = Rect.one({ fill: '#32cd79' }, 100, 100) leafer.add(rect) setTimeout(() => { // 设置不透明度 rect.opacity = 0.5 }, 1000)