我試圖在畫布中插入h1。但它不顯示。無論如何整合w3school html內的畫布,而不使用easeljs程序創建文本。我在畫布上添加了這個。在flash裏集成html cc createjs:不創建createjs文本。是否有可能整合?
<body onload="init();" style="background-color:#D4D4D4">
<canvas id="canvas" width="550" height="300" style="background-color:#ffffff">
<h1> i like this </h1>
</canvas>
<script>
function init() {
canvas = document.getElementById("canvas");
exportRoot = new lib.Untitled1();
stage = new createjs.Stage(canvas);
stage.addChild(exportRoot);
stage.update();
createjs.Ticker.setFPS(24);
createjs.Ticker.addEventListener("tick", stage);
}
</script>
</head>
<body onload="init();" style="background-color:#D4D4D4">
<canvas id="canvas" width="550" height="300" style="background-color:#ffffff">
<h1> i like this </h1>
</canvas>
作爲一個後續行動,是否有一些原因你不在Flash中添加文本然後導出? – Andrew