具有新创建的组件的实体–

时间:2019-06-10 19:38:53

标签: javascript html aframe

我正在尝试将一个新注册的组件以及一个提供a场景内行为的组件包括在内。

首先,我注册一个组件以在悬停时更改颜色。然后,我注册一个组件以创建一个新的圆。

当我在a场景内创建实体时,它应该显示悬停行为,但不显示。

<html>
  <head>
    <script src="https://aframe.io/releases/0.9.2/aframe.min.js"></script>
    <script>
// here, I register the component to change color on hover
      AFRAME.registerComponent('change-color-on-hover', {
        schema: {
        color: {default: 'red'}
        },

        init: function () {
          var data = this.data;
          var el = this.el;
          var defaultColor = el.getAttribute('material').color;

          el.addEventListener('mouseenter', function () {
            el.setAttribute('color', data.color);
          });


          el.addEventListener('mouseleave', function () {
            el.setAttribute('color', defaultColor);
          });
        }
    });

// here, I create new circles that should later show the hover-behavior
      AFRAME.registerComponent('newcircle', {
        schema: {},
        multiple: true,
        init: function () {
            var sceneEl = document.querySelector('a-scene');
            var entityEl = document.createElement('a-ring');
            var posit = {x: 1, y: 0.1, z: -1};
            entityEl.setAttribute('position', posit);
            sceneEl.appendChild(entityEl);    
        }
      });

    </script>
  </head>

  <body>
    <a-scene background="color: #000000">
// here, the circle is created and should show the hover-behavior
      <a-entity newcircle change-color-on-hover></a-entity>          
    </a-scene>
  </body>
</html>

创建了圆圈,我希望它会在悬停时更改颜色,但不会。你知道为什么吗?

非常感谢您!

1 个答案:

答案 0 :(得分:0)

在空的mouseenter父级上监听mouseleave<a-entity>事件。

如果您将组件添加到环中,则它应该可以按您希望的方式工作:

// ...
entityEl.setAttribute('position', posit);
entityEl.setAttribute('change-color-on-hover', '')
// ...

this小提琴中检查一下。