着名的引擎鼠标活动

时间:2015-09-21 18:55:41

标签: javascript jquery famous-engine

我想获得相对mouseX和mouseY位置进行一些动态重力定位。

我注意到事件只能应用于节点。

    this.scene.addUIEvent('click');
    console.log('scene', this.scene);
    this.scene.addComponent({
      onReceive: function(e, payload) {
        console.log(e, payload)
        if (e == "mousemove") {
          var pos = payload.node.getPosition()
          anchor.x = pos[0];
          anchor.y = pos[1];
        }

      }
    });

是否可以在Famous坐标系中获得鼠标位置?没有它在一个节点上?

0 个答案:

没有答案