我一直在尝试使用Crafty.js构建游戏。我有一个用作按钮的图像,一旦用户单击它,便会转到下一页。但是,由于某种原因,鼠标单击无法触发。有任何想法吗?

Crafty.scene('Main', function () {
  Crafty.background("url('images/homeBackground.jpg')");
  Crafty.e('2D, DOM, Mouse, next').attr({ //next is the image
    x: 600,
    y: 600,
    w: 100,
    h: 50
  }).bind('click', function (e) {
    alert("Here?"); //this isn't firing
  });
});

最佳答案

事件名称区分大小写,您应该绑定到Click事件。

有关更多详细信息,请访问:http://craftyjs.com/api/Mouse.html

09-26 04:51