0
に入る押しで入力中にカーソルが新しい行に行くようにする方法
私は次の行に、このテキストの折り返しを作るためにどのよう EaselJS
var inputText = document.getElementById("input");
var text = new createjs.Text();
text.set({
text: inputText.value,
textAlign: "center",
textBaseline: "middle",
x: 100,
y: 100
});
stage.addChild(text);
stage.update();
inputText.onkeyup = function(){
text.set({
text: inputText.value
})
stage.update();
}
をonkeyupの使用して入力フィールドから入力を取り、キャンバスに、それを更新しています入力中に入力を押すと?