6

我是 EaselJS 的新手,我正在尝试创建一个带有居中文本的彩色容器。这是我的代码:

var width = 100, height = 100;
canvas.width = width + 10;
canvas.height = height + 10;
var container = new c.Container();
container.x = 10;
container.y = 10;
container.setBounds(0, 0, width, height);

var rect = new c.Shape();
rect.graphics.beginFill('#6e7e8e').drawRect(0, 0, width, height);
container.addChild(rect);

var text = new c.Text();
text.set({
    text: 'hello',
    textAlign: 'center'
});
container.addChild(text);
stage.addChild(container);
stage.update();

由于某种原因,文本不在容器中居中,但一半的文本不在容器中。我的代码有什么问题?

4

1 回答 1

12

您的文本以添加的 x 位置为中心水平居中(在您的情况下为 x=0),这就是它在容器外一半的原因。如果你想在你的容器中居中你的文本,你必须自己定义位置:

text.set({
    text: 'hello',
});
var b = text.getBounds();
text.x = (width/2) - (b.width/2); 
text.y = (height/2) - (b.height/2);
于 2013-11-09T15:40:38.610 回答