js 事件 默认传参
使用easljs时,要在图片完全加载后才能使用Bitmap进行初始化
用到了onload事件,发现这个事件会默认传递事件‘event’过去
不知其他事件是不是都是这样的
示例:
[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]
image.onload = function(e){
img = new createjs.Bitmap(e.target);
stage.addChild(img);
stage.update();
}
[/pcsh]
最后更新于 2017-03-17 15:58:08 并被添加「」标签,已有 639 位童鞋阅读过。
此处评论已关闭