对象不在createjs中删除stage的子节点

时间:2013-03-06 04:08:28

标签: html5 createjs

我创建了一个包含一个圆圈和一个文本的舞台。我正在使用

制作动画
           var tween = createjs.Tween.get(ball, {loop:true})
                .to({x:ball.x, y:canvas.height - 55, rotation:-360}, 1500, createjs.Ease.bounceOut)
                .wait(1000)
                .to({x:canvas.width-55, rotation:360}, 2500, createjs.Ease.bounceOut)
                .wait(1000).call(stop);

       function stop(){
        stage.removeChild(txt);
        stage.removeChild(ball);
        createjs.Ticker.removeEventListener("tick", tick);
        createjs.Ticker.removeEventListener("tick", stage);

       }

但是stop方法中的removechild没有调用。任何人都可以告诉我我错在哪里。

1 个答案:

答案 0 :(得分:0)

您可以通过将范围传递到“调用”功能来解决此问题。目前它正在调用球实例停止。

.wait(1000).call(stop, null, this);