0
我想了解有關fabricjs的信息,並注意到當我創建新的fabric.Canvas對象時,它會更改畫布的位置。創建新的織物畫布更改畫布位置
HTML
<canvas id="c"></canvas>
的CSS
#c {
border: thin red solid;
position: absolute;
top: 50px;
left: 100px;
}
的Javascript
var c = document.getElementById("c");
var ctx = c.getContext("2d");
var img = new Image();
img.src = 'cheese.jpg';
img.onload = function() {
ctx.drawImage(img, 0, 0);
};
// applying the below line shifts the canvas element back to 0,0 position
var cFabric = new fabric.Canvas('c');
希望你們知道我做錯了。
該訣竅,謝謝 – Aeseir