0
是否可以使用KineticJS設置對象偏移量以便它不移動?設置KineticJS圖像的偏移量而不移動
//this moves it
img.offsetX(100);
//this also moves it
img.offset({x:100,y:0};
我試過了;
img.setoffset({x:100,y:100});
但這似乎沒有做任何事情?
我知道我可以設置偏移量,當我創建圖像爲;
var newImg = new Kinetic.Image({
x: x,
y: y,
image: imgObject,
name: 'image',
offset: {x:offX, y:offY}
})