我将此阶段与容器相关联:
html:
<div id="container">
脚本1:
var stageInFirstScript = new Kinetic.Stage({
container: document.getElementById('container'),
width: this.SKETCH_WIDTH,
height: this.SKETCH_HEIGTH
});
在第二个脚本中,我需要操纵刚刚创建的舞台上的形状。是否可以使用这样的方法检索 stageInFirstScript?
脚本 2:
var stageInSecondScript = document.getElementById('container').RetrieveExistingStage();
//now I have retrieved stageInFirstScript
//I can add shapes to it, etc....
任何帮助或替代解决方案将不胜感激!