在悬停时在Aframe实体中制作动画

时间:2019-02-20 19:49:42

标签: aframe

我无法在AFRAME元素/实体中设置动画。在下面的演示中,我设置了一个框,在框的顶部有一个文本实体,当我将鼠标悬停在框上时,该文本实体需要进行动画处理(放大),而text元素不会在其中显示动画。有人可以帮忙吗?

https://jsfiddle.net/0d6ymk21/

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <script src="https://aframe.io/releases/0.8.2/aframe.min.js"></script>
    <script src="https://rawgit.com/mayognaise/aframe-mouse-cursor-component/master/dist/aframe-mouse-cursor-component.min.js"></script>

  </head>
  <body>
    <a-scene>
      <a-entity id="camera" camera mouse-cursor look-controls>
        <a-cursor fuse="true" color="blue"></a-cursor>
      </a-entity>
      <a-entity
        id="#fernando"
        text="color: black;value: Fernando;"
        scale=".1 .1 .1"
        position="2 1 -2"
      ></a-entity>
      <a-box box position="1 0 -2" color="red" activate-name=""></a-box>
    </a-scene>
  </body>
</html>

-JS:

AFRAME.registerComponent("activate-name", {
  schema: {
    default: ""
  },
  init: function() {
    var data = this.data;
    var el = this.el;
    var fernando = document.querySelector("#fernando");
    el.addEventListener("mouseenter", function() {
      fernando.setAttribute("scale", "2 2 2");
    });
  }
});

1 个答案:

答案 0 :(得分:1)

这里有两个问题:

1)如果您想使用document.querySelector('#fernando')抢夺费尔南多- id 必须是fernando而不是#fernando

2)组件声明-在这种情况下,需要在{strong>之前用html附加组件,完成activate-name。您只需在场景之前将其扔到<script>标签上即可

<script>
  AFRAME.registerComponent('foo', ...
</script>
<a-scene>
  <a-entity foo></a-entity>
</a-scene>

更好-将其保存在单独的.js文件中,并将其包含在<head>中。 小提琴here


这是必需的,因为jsfiddle在加载窗口时执行代码部分。