Skip to content

zIndex

元素在父元素中的层叠顺序,和 HTML 的 z-index 略有不同。

关键属性

zIndex: number

元素在父元素中层叠顺序, 默认为 0。

归属

UI

示例

调整矩形的显示顺序

ts
// #调整元素在父元素中的层叠顺序
import { Leafer, Group, Rect, Ellipse } from 'leafer-ui'

const leafer = new Leafer({ view: window })

const rect = new Rect({
    width: 100,
    height: 100,
    fill: '#32cd79',
    draggable: true
})

const ellipse = new Ellipse({
    x: 50,
    y: 50,
    width: 100,
    height: 100,
    innerRadius: 0.5,
    fill: "#FEB027"
})

leafer.add(new Group({ children: [rect, ellipse] }))

setTimeout(() => {

    // 调整矩形的显示顺序
    rect.zIndex = 1

}, 1000)

Released under the MIT License.