我有一个定制的html文件,打算在我的Android手机上测试WebAR,但似乎无法正常工作。当我在Firefox上打开html文件时,它提示我打开网络摄像头就可以了,但是在手机上却没有。
<meta charset="utf-8">
<title>WebAR Test</title>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script>
<body style='margin : 0px; overflow: hidden;'>
<a-scene ar>
<a-plane position="0 -2 -4" rotation="-90 -5 0" width="4" height="4" color="#F1BFFF"></a-plane>
<a-sphere position="0 0 -4" radius="0.5" color="#396EFF"></a-sphere>
<a-cylinder position="0 1 -4" radius="0.3" height="2" color="#373027">
<a-box position="0 3.8 0" width="1" height="5" depth="0.5" color="#a8a8a8"></a-box>
<a-box position="0 1.2 0" width="2" height="0.5" depth="0.8" color="#FFC706"></a-box></a-cylinder>
<a-marker-camera preset='hiro'></a-marker-camera>
</a-scene>
</body>
我有什么想念的地方吗?