我制作了相机游览点的可排序菜单(仅限jquery)
<a-entity id='cameraTour' camera tour='autoStart:false' position='21 12 -15' rotation='-35 30 0' style='display:none;'>
<a-entity class='cameraTourPoint' tour-waypoint='Front View' io3d-uuid='frontView' position='2 10 -13' rotation='-25 0 -1.5'></a-entity>
<a-entity class='cameraTourPoint' tour-waypoint='North Side View' io3d-uuid='northSideView' position='-25 8 -42' rotation='-45 -93 -1'></a-entity>
<a-entity class='cameraTourPoint' tour-waypoint='South Exit' io3d-uuid='southExit' position='24 -.8 -37.7' rotation='-2 -90 0'></a-entity>
<a-entity class='cameraTourPoint' tour-waypoint='South Angle View' io3d-uuid='southAngleView' position='21 12 -15' rotation='-35 30 0'></a-entity>
</a-entity>
为了交换相机点和菜单项,我使用 dom 操作功能,如下所示:
var el = document.getElementsByClassName('cameraTourPoint')[currentItemIndex],
elBefore = document.getElementsByClassName('cameraTourPoint')[currentItemIndex+1];
document.getElementById('cameraTour').insertBefore(el,elBefore.nextSibling);
为了添加新的航点,我做了这个:
var cameraTourPoint = document.createElement('a-entity'),
cameraPointAttributes = {
"id": generatePointId(),
"class": "cameraTourPoint",
"tour-waypoint": "CLEAR POINT",
"io3d-uuid": "clearPoint",
"position": function() {},
"rotation": ""
},
lastChild = document.getElementById('cameraTour').lastChild;
document.getElementById('cameraTour').insertBefore(cameraTourPoint,lastChild.nextSibling);
var clearPoint = document.getElementById('cameraTour').lastChild;
$.each(cameraPointAttributes,function(key,value){
clearPoint.setAttribute(key,value);
});
但它不工作!交换cameraTour后,我想更改顺序,当我添加新点并尝试“onclick”去找他时,我收到以下消息:
tour.js:80 给定的航路点 clearPoint 不存在。可用航路点:(4) ["frontView", "northSideView", "southExit", "southAngleView"]
那么,如何在交换或添加新点后刷新旅游点呢?
aframe 0.8.0
3d.io 1.1.x
aframe 动画组件 3.2.5