FabricJS - disable layer index changing when object is selected

前端 未结 1 1732
眼角桃花
眼角桃花 2021-01-11 14:14

I\'ve a problem with my FabricJS app. By default, the object layer in fabricjs jumps to the top when I select it.

I want to disable this option so that the index of

1条回答
  •  迷失自我
    2021-01-11 14:54

    You just need to set the preserveObjectStacking options as shown in the below code when setting up the canvas.

    var fabricCanvas = new fabric.Canvas("t", { preserveObjectStacking: true });
    
    fabricCanvas
      .add(new fabric.Rect({
        top: 0,
        left: 0,
        width: 100,
        height: 100,
        fill: "green"
      }))
      .add(new fabric.Rect({
        top: 50,
        left: 50,
        width: 100,
        height: 100,
        fill: "red"
      }))
      .add(new fabric.Rect({
        top: 100,
        left: 100,
        width: 100,
        height: 100,
        fill: "blue"
      }))
      .renderAll();
    canvas {
      border: 1px solid black;
    }
    
    

    0 讨论(0)
提交回复
热议问题