0
將邊框添加到
以下代碼將更改圖像的材質顏色,但我更願意添加邊框或發光。
AFRAME.registerComponent('selectable', {
init: function() {
var el = this.el;
this.el.addEventListener('mouseenter', function (evt) {
this.setAttribute('material', 'color', 'blue');
});
this.el.addEventListener('mouseleave', function (evt) {
this.setAttribute('material', 'color', '');
});
}
});
這裏是一個JSBIN表示用於說明上述