Easel.js: Browser compatibility when placing an image within a container and adding mouse interactions
问题 I'm going to start this question off by saying that this is 100% working in Firefox (v21.0). For some reason it's not working in Google Chrome (v27.0.1453.94m). It also doesn't work in IE10. Here is the JavaScript code I'm having issues with: function canvasDrawBackground(value){ console.log(value); stage.removeChild(background); var temp = new createjs.Bitmap("images/bg_" + value +".jpg"); background = new createjs.Container(); background.x = background.y = 0; background.addChild(temp);