JS と EaselJS を使用して画像を表示しようとしています。
エラーが発生しますUncaught TypeError: Object #<HTMLImageElement> has no method 'isVisible'
これが私のコードスニペットです...
function init() {
canvas = document.getElementById("testCanvas");
start();
}
function start() {
//Create new stage and point it at Canvas
stage = new createjs.Stage("demoCanvas");
myImg = new Image();
myImg.src = "./Images/SnakeHead.png";
なぜ何か考えはありますか?
ありがとう!