我正在尝试自学javascript和我的第一个小项目我试图根据情况从数组中循环两个图像来制作动画。 IE浏览器。一个胜利场景将循环heroIdle和heroWave。经过几个小时的搜索,我转过身来希望得到任何指导。
image.push({ id: "heroIdle", src: "heroIdle.png" });
image.push({ id: "heroWave", src: "heroWave.png" });
image.push({ id: "heroStomp", src: "heroStomp" });
我试图简单地返回image["heroIdle"];
但仍然没有显示任何内容。
我做错了什么?