App Lab鼠标坐标

时间:2017-05-16 22:20:05

标签: javascript mouse

我最近开始在Code.org(found here)上使用App Lab,它使用了一个奇怪的JS库。找到鼠标坐标的功能是什么?我看了一遍,没有人提到它。

(如果您不知道应用实验室是什么,它是一个code.org编译器,可以让您编程JS,然后将其发送到您的手机,制作迷你应用程序)

2 个答案:

答案 0 :(得分:1)

Source of the information below

以下是使用click事件并将鼠标坐标记录到控制台的示例:

// button1 is the id of a button I added in Design mode.
onEvent("button1", "click", function(event) {
  console.log(event.x + " " + event.y);
});

要查看App Lab的onEvent文档,请确保您处于代码模式(而不是设计模式)并确保显示(不是文本)块,然后将鼠标悬停在工具箱中的块上(而不是工作区)。

答案 1 :(得分:0)

您可以随时通过以下代码了解鼠标位置:

onEvent("screen1", "mousemove", function(event) {
  console.log(event.x + " " + event.y);
});