node.setZIndex(2); の使い方 または node.moveToTop(); node.moveToBottom(); 画像やテキストの下に背景レイヤーを修正するには?
背景 -> 画像 -> 背景をクリックすると、画像が下に移動します
https://jsfiddle.net/hk7xe0we/12/
$('.back').click(function(){
imgback = $(this).find('img').attr('src');
var imageObj = new Image();
imageObj.onload = function() {
var background = new Konva.Image({
image: imageObj,
});
// add the shape to the layer
layer.add(background);
layer.draw();
};
imageObj.src = imgback ;
});
https://github.com/EditorsJS/editorimagekonvajs
助けてくれてありがとう